2
votes
2answers
31 views
How Do I Solve a Locking Issue in MySQL?
I suppose this issue applies to deadlocks, live-locks, or just lock wait timeouts.
I'm trying to figure out what query is causing a lock that is preventing another query from ex …
2
votes
1answer
14 views
How to organize ASP.NET request locking or row locking in DB
Hi!
I've asp.net page/handler to access images.
When performed fist request to the image I resize image to standard size(save on disk) and return it.
So I need lock all request to …
1
vote
1answer
25 views
How to change the locking mechanism in Alternative PHP Cache (APC)?
I recently read in a presentation on Scribd that Facebook had benchmarked a variety of locking mechanisms for APC including file locks (default), IPC semaphore locks, linux Futex l …
0
votes
3answers
38 views
ASP.NET - Different threads writing to the same file causing problems
I've got a method which performs a delete and create file. there are issues with the threads all trying to access the file at the same time.
How can i limit access to the file?
…
0
votes
1answer
12 views
how can we achieve second application read that file when first application not modifying it
i have two application
first application is bash
second is java
which one of them is periodically deleting and recreating a specific file (first)
the other one is also periodica …
6
votes
3answers
202 views
Is this (Lock-Free) Queue Implementation Thread-Safe?
I am trying to create a lock-free queue implementation in Java, mainly for personal learning. The queue should be a general one, allowing any number of readers and/or writers concu …
0
votes
1answer
39 views
Help with SQL Server locking
Hi,
I have a locking problem between a "select" and an "insert/update":
Select TableB.* from TableA
Join TableB on TableA.TableBId = TableB.TableBId
Start Transaction (ReadCommit …
5
votes
4answers
134 views
Optimal lock file method
Windows has an option to open a file with exclusive access rights. Unix doesn't.
In order to ensure exclusive access to some file or device, it is common practice in unix to use …
1
vote
1answer
34 views
Slowdown identified: ReaderWriterLock(-1). May I use different locks?
Hi,
after hours of tracking mysterious one or two seconds long lasting "freeze" I finally found out that its ReaderWriterLock(-1). It is server app and the lock here is held for wr …
2
votes
2answers
38 views
OptimisticLocking and @OneToMany(mappedBy=…) handling?
I have an AbstractEntity class as superclass for all my entites that defines an optimistic lock column like this:
@Version
private long lockVersion;
Now I often get OptimisticLo …
3
votes
6answers
166 views
Why is “lock (typeof (MyType))” a problem?
MSDN gives the following warning about the lock keyword in C#:
In general, avoid locking on a public
type, or instances beyond your code's
control. The common constructs …
0
votes
2answers
26 views
Form has my table locked down tight even after docmd.close
Sorry for the wall of text guys but this one requires expliaining, way too much code to post...
I'm importing fixed width files into access in methods that require data entry. I …
1
vote
3answers
207 views
How to Open a CSV or XLS with Jet OLEDB and attain Table Lock?
I am trying to figure out how to read/write lock a CSV or XLS file when I read it as a Database via Jet OLEDB.
The following code will open a CSV as a DB and load it into a DataTa …
5
votes
4answers
168 views
Do atomic operations become slower as more CPUs are added?
x86 and other architectures provide special atomic instructions (lock, cmpxchg, etc.) that allow you to write 'lock free' data structures. But as more and more cores are added, it …
1
vote
4answers
40 views
C# lock and code analysis warning CA2002
In my application I have a form that starts synchronization process and for number of reasons I want to allow only one synchronization to run at a time. So I've added a static bool …
