Top "Synchronization" questions

Synchronization refers to using controls to maintain a coherent representation, either a group of processes running the same program (process synchronization), or representations of data (data synchronization).

Behavior differences between performBlock: and performBlockAndWait:?

I'm creating an NSManagedObjectContext in a private queue to handle data updates I take from files and/or services: NSManagedObjectContext *…

ios core-data asynchronous synchronization nsmanagedobjectcontext
Apache ZooKeeper: How do writes work

Apache ZooKeeper is a kind of high available data-store for small objects. A ZooKeeper cluster consists of some nodes which …

synchronization replication apache-zookeeper
Syncing SQLite with SQLServer using Sync Framework

I'm trying to make an online application which can sync the SQLite database running on an Android device with the …

sql-server sqlite synchronization microsoft-sync-framework
Lock (Monitor) internal implementation in .NET

For mastering of some technology you have to know how it's made at one abstraction level lower. In case of …

c# .net multithreading synchronization monitor
How to sync your MAMP install across multiple Macs

I have MAMP set up on my iMac and on my Macbook. I want to keep both installs synced using …

macos synchronization mamp dropbox
Clock synchronization quality on Windows Azure?

I am looking for quantitative estimates on clock offsets between VMs on Windows Azure - assuming that all VMs are …

synchronization azure clock
Lockless using InterlockedCompareExchange

I am trying to make following snip of code lockless using interlocked operations, Any idea how to translate this? if (…

c++ multithreading synchronization interlocked
Is Microsoft Sync Framework alive?

According to the MS documentation Sync Framework Toolkit (https://code.msdn.microsoft.com/Sync-Framework-Toolkit-4dc10f0e) is a legacy …

c# sql-server synchronization microsoft-sync-framework
synchronized object not locked by thread before notifyAll()

I want to have a boolean to notify some sections of the system that a specific service started. For some …

java multithreading synchronization synchronized java-threads