0
votes
3answers
14 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 …
2
votes
3answers
81 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 …
2
votes
3answers
183 views
Where can I find a good introduction on SQL locking and transaction strategies
I'm using locks and transactions a bit like a VBA excel programmer trying to write a multithreaded c++ server for the first time...
I've tried to ask my coworkers for advice, but while we're all …
1
vote
3answers
69 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 …
0
votes
0answers
10 views
Typical usage scenario to using the ReaderWriterLockSlim property count fields.
I've recently upgraded to ReaderWriterLockSlim for an app i'm writing from the much fatter ReaderWriterLock and apparently more prone to deadlock situations.
I see for the new slim lock, there are a …
0
votes
6answers
193 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 …
8
votes
3answers
126 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 …
0
votes
1answer
34 views
how to prevent opening serial port on linux by foreign application?
In case of "bug" in port driver using locking is not acceptable.
1
vote
3answers
30 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 …
2
votes
2answers
26 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 …
1
vote
9answers
554 views
Select unlocked row in Postgresql
Is there a way to select rows in Postgresql that aren't locked? I have a multi-threaded app that will do:
Select... order by id desc limit 1 for update
on a table.
If multiple threads run this …
4
votes
8answers
5k views
What is the best WebDAV client for Windows?
The support of locking will be preferred.
2
votes
1answer
69 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 );
…
0
votes
2answers
80 views
Assigning data-entry tasks to multiple concurrent web-app users
I'm trying to think of an efficient way to allow a group of people to work through a queue of data entry tasks. Previously we've just had one person doing this so it hasn't been an issue. The …
0
votes
3answers
64 views
ADO Connection to Access leaves .ldb file behind
I'm writing an MS Outlook (2003) macro which uses an ADO Connection to an Access DB (2003). I am simply opening a connection, getting some records into a Recordset, which I use to populate a grid (but …
