A lock generally refers to something that prevents another process from starting or accessing the same information until the lock is released.
When I try to drop a table, MySQL hangs. I don't have any other open sessions. How to resolve this? …
mysql locksIn my current scenario speed is essential I have a map that is only being read by multiple threads and …
c++ multithreading locksBut I am synchronizing on the 'roster' object everywhere it gets new'ed. How come ? The offending code: public Roster getRoster() { …
java android synchronize locksI can not use NOLOCK after table names in join statements. Is it even a valid scenario to try to …
sql oracle join locks read-uncommittedFirst, I'll describe what I want and then I'll elaborate on the possibilities I am considering. I don't know which …
java thread-safety concurrenthashmap locksI have a LockManager that manages the locks of several threads. Sometimes the threads are bad boys, and I have …
java locks reentrantlockAre Locks auto-closeable? That is, instead of: Lock someLock = new ReentrantLock(); someLock.lock(); try { // ... } finally { someLock.unlock(); } ...can I say: …
java resources java-7 resource-management locksBasically I want to do this: begin; lock table a; alter table a rename to b; alter table a1 rename …
sql postgresql concurrency ddl locksI have question on lock on table in SQL Server while inserting data using multiple processes at a single time …
sql-server database locksI'm working with an application that access an oracle database. Sometimes objects (rows) on that database are locked by process …
hibernate jboss transactions timeout locks