1
vote
2answers
22 views
Does Interlocked.CompareExchange(double,double,double) work in 32 bit OS?
I'm maintaining a high performance class that can be operated on by multiple threads. Many of the fields are volatile ints, and as it turns out I need to upgrade one of those to a double. I'm …
2
votes
4answers
107 views
How do I get the handle for locking a file in Delphi?
The LockFile API takes a file handle. I normally use TStream for file access, so I'm unsure how to get the appropriate handle, given an ANSIString filename only. My purpose is to lock a file (which …
0
votes
2answers
36 views
Does creating a nonclustered index on a SQL Server 2005 table prevent selects?
I'd like to create an index on a view I have but I need to make sure the data can still be read while the index is being created. I was reading an article that suggested that when creating a …
1
vote
1answer
35 views
SQL Server Latches and their indication of performance issues
I am trying to understand a potential performance issue with our database (SQL 2008) and in particular one performance counter, SQLServer:Latches\Total Latch Wait Time Total Latch Wait Time (ms). We …
2
votes
3answers
96 views
C# sharing locks with multithreading
Is there a common way to "share" a lock between different objects operating on same set of data?
I am aware that having a public object for locking is usually not recommended.
For example, a Queue …
8
votes
3answers
135 views
Why are locks performed on separate objects? [closed]
Possible Duplicate:
Difference between lock(locker) and lock(variable_which_I_am_using)
In all of the "thread-safe" code examples i've seen, they lock on a separate dummy object. Why cant …
2
votes
3answers
127 views
Upgradeable read/write lock Win32
I am in search of an upgradeable read write lock for win32 with the behaviour of pthreads rwlock, where a read lock can be up- and downgraded.
What I want:
pthread_rwlock_rdlock( &lock );
…
1
vote
3answers
29 views
SQL Server READPAST hint
I'm seeing behavior which looks like the READPAST hint is set on the database itself.
The rub: I don't think this is possible.
We have table foo (id int primary key identity, name varchar(50) not …
0
votes
5answers
199 views
C# lock on integer ?
Hi,
I have a producer/consumer process. The consumed oject as an ID property (of type integer), I want only one object with the same ID to be consumed at a time. How can I perform this ?
Maybe I can …
0
votes
1answer
17 views
Locking a single NSPersistentDocument
My application currently uses CoreData as a backend to store to a single SQL data file stored in ~/Library/Application Support/MYAPP/MyDataFile.sqlite. I know it's an unusual situation, but what is …
1
vote
3answers
73 views
Java double checked locking by forcing synchronization twice, Workable?
I've read all about how double checked locking fixes never work and I don't like lazy initialization, but it would be nice to be able to fix legacy code and such a problem is too enticing not to try …
2
votes
2answers
28 views
Deleting rows cause lock timeout
I keep getting these errors when trying to delete rows from a table. The special case here is that i may be running 5 processes at the same time.
The table itself is an Innodb table with ~4.5 million …
5
votes
6answers
95 views
Using request.getSession() as a locking object?
I have some java code that gets and sets a session attribute:
Object obj = session.getAttribute(TEST_ATTR);
if (obj==null) {
obj = new MyObject();
session.setAttribute(obj);
}
In order to make …
1
vote
3answers
33 views
tempdb SQL Server locking
Hello!
Our application runs alongside another application on a customers machine.
We have put some efforts regarding avoiding long-running locks in tempdb since this obviously affects concurrency …
6
votes
7answers
235 views
How to avoid double check locking when adding items to a Dictionary<> object in .NET?
I have a question about improving the efficiency of my program. I have a Dictionary<string, Thingey> defined to hold named Thingeys. This is a web application that will create multiple named …
