0
votes
2answers
13 views
Real-time synchronization of database data across all the clients
What's the best strategy to keep all the clients of a database server synchronized?
The scenario involves a database server and a dynamic number of clients that connect to it, vie …
2
votes
2answers
44 views
fcntl() for thread or process synchronization?
Is it possible to use fcntl() system call on a file to achieve thread/process synchronization (instead of semaphoress)?
1
vote
1answer
14 views
How to fetch attributes of image in silverlight?
Hello, I am loading an image to my silverlight application. This image will fit in a 3d model as a texture map. I need to fetch image attributes. For that I am using ImageOpened ev …
0
votes
4answers
44 views
Atomic Instruction
What do you mean by Atomic instructions?
How does the following become Atomic?
TestAndSet
int TestAndSet(int *x){
register int temp = *x;
*x = 1;
return temp;
}
From …
0
votes
2answers
79 views
iPhone - start two processes simultaneously
Hi
I have to start more than one processes simultaneously - an AVAudioPlayer's play, a timer and a file write operation.
If I just write them in a method, they are executed one a …
1
vote
2answers
41 views
What will it take for Transactional Memory to be viable?
I've been doing some work on transactional memory and its viability for systems programming (databases, operating systems, servers, etc.). My own experience employing transactions, …
0
votes
0answers
13 views
Thread Synchronization Scenario Feedback
I need some feedback on a threading problem that I am trying to solve.
The problem (this is coded as a winform application in C#)
I am comparing to lists which should be identical …
0
votes
1answer
22 views
Local and remote data synchronisation.
Hello there,
We have a local server with an access database which feeds data to clients in the same domain. Now we also have a website which is hosted externally, and working on a …
0
votes
2answers
56 views
What is a practical way to sync data in a directory to a database?
My situation involves a directory containing MP3 files, and a database that should contain all the MP3 metadata (i.e. genres, artist names, album names, and track names) from the M …
0
votes
1answer
11 views
Outlook sent item internet header missing
Hi,
I have written a C++ app that sync's Outlook emails with our central server DB. Incoming messages contain MessageID info in the internet header - I use this for key generation …
2
votes
2answers
90 views
Delphi MREW implementation that favors readers?
Is there a Delphi implementation of an MREW (multiple read, exclusive write) lock, that favors reading over writing?
1
vote
3answers
42 views
Syncing Rails development environments on my two computers
So far I have been building my Rail app on a Mac OS X box using TextMate.
It's just me, so I haven't used Git. I have just opened and closed the code in the file system, used an A …
3
votes
1answer
69 views
GCC: Force a function call after every instruction (for multithreaded testing)?
Hi,
I'm trying to test a rather threading-sensitive area in my program and was wondering if there's a way to force gcc to insert a call after every instruction it emits so that I …
0
votes
1answer
20 views
Sybase sql anywhere sync a Database view(pull from consolidated to remote)?
I am trying to set up a synchronization model to sync my consolidated Oracle database with a remote SQL Anywhere database. I have a couple Views on the consolidated Oracle databa …
3
votes
2answers
94 views
Synchronizing Git repos across machines without push
I've got three computers which should have the same settings for all their applications. Since all of them have processes running using those settings, I never want to push, instea …
