Questions tagged [data-sharing]

249 questions
5
votes
3 answers

Sharing Data Between Apps on an iDevice

Is it possible to share on-disk data between iOS applications, or are they truly sandboxed? In other words if I wanted to make a shared repository of data to be accessed (and/or modified) by one or more of my apps, could it be done? One of the…
fbrereto
  • 35,429
  • 19
  • 126
  • 178
5
votes
2 answers

Multi tenancy with tenant sharing data

I'm currently in the process of making a webapp that sell subscriptions as a multi tenant app. The tech i'm using is rails. However, it will not just be isolated tenants using the current app. Each tenant create products and publish them on their…
Syl
  • 3,719
  • 6
  • 35
  • 59
4
votes
1 answer

How to share data to social networking site from my application

In my application I want to share data to any of the social networking sites. But problem is that whenever I share data on facebook I can't send text as well as image only display entry nothing else. I am…
pratik
  • 983
  • 3
  • 13
  • 25
4
votes
2 answers

Sharing data in Haskell

I would like to understand how the memory sharing mechanism works in Haskell. Indeed, a way to program a function calculating the terms of the fibonnaci sequence is: fibo' n = f n where f 0 = 1 f 1 = 1 f n = fibs !! (n-1) + fibs !!…
Ftyupl
  • 67
  • 3
4
votes
2 answers

Sharing Data between Components (Angular 7)

I am currently trying to send data between components via a data service using "BehaviorSubject". In the first component, I am updating the messageSoruce and in the second component , retrieving the data but it is empty. I checked that the value…
4
votes
3 answers

pthread and child process data sharing in C

my question is somewhat conceptual, how is parent process' data shared with child process created by a fork() call or with a thread created by pthread_create() for example, are global variables directly passed into child process and if so, does…
besamelsosu
  • 461
  • 3
  • 11
3
votes
5 answers

Sharing strings and variables throughout ios app

I'm making an app for a final project for class and I need to share strings, integers and floats throughout different views in my application. I have to create an app that a waiter/waitress would use on the job. I need different views for…
JustLikeThat
  • 353
  • 1
  • 5
  • 17
3
votes
2 answers

Sharing constant data between views in Google Chrome extension

Suppose we have Chrome extension, that uses background page, popup page, maybe some other views and content scripts. There is some constant data relating to the subject area, that has to be accessible from all views and content scripts. What is the…
disfated
  • 10,633
  • 12
  • 39
  • 50
3
votes
0 answers

Share data between iOS-app and Apple Watch companion app?

I only find old threads about this topic. Apples documentation is really hard to understand. So I have an iOS-app with a widget that's fetching data once a day and then display the info as a widget on the iPhone. Now I want to add an Apple Watch…
irrbloss
  • 207
  • 2
  • 9
3
votes
2 answers

Sharing hashmap between different JVM running on the same machien

I have some maps that contains cached data from db. Currently 5 instance of the same server is running on same machine in different JVM. How can I share maps between JVM? cache is write once and read many. Currently the problem is because of this…
Nike
  • 312
  • 1
  • 2
  • 9
3
votes
3 answers

How can i share data between non-related components in react js?

I'm quite new with reactjs, and I'm struggling with the following: I have a Header component (in my App.js file) which contains an AudioPlayer. This AudioPlayer needs to be updated with current value of src (with the path of the song, stored in…
3
votes
1 answer

Snowflake Data sharing across instances

I have two snowflake instances out of which one instance has data and i'm looking for an option to clone data from this instance to another but it seems like there is no such option of cloning across instances in snowflake but we have something…
3
votes
1 answer

Sharing meta tag og:image for facebook is selecting other image then defined

The following code is not working correct anymore when I want to share this on Facebook, in my case I'm using AddThis.com.
3
votes
2 answers

C++ data sharing between objects/classes implementing the same interface

There is, more often than not, a need to share same data between different objects/classes. I am aware of a few different ways of doing this: Global variables: Loathed by most and for the right reasons. Singletons: This provides limited control on…
TheFlyingObject
  • 181
  • 1
  • 7
3
votes
1 answer

What is the best data sharing mechanism between two iOS apps if the data to be shared is huge and the apps can have different app id prefixes?

I recently have a use case where i need to share huge amounts of data between two iOS apps. The two apps can have different app id prefixes. What could be the best ways to do it? I have explored some of the options but either some of them need a…
letsbondiway
  • 470
  • 3
  • 18
1
2
3
16 17