Re: Concurrent reads & writes -
07-11-2005
, 11:55 PM
Hi Dan,
It sounds like you are sharing the databases by having the environment
directory on a Windows network share. Unfortunately, if that is the
case, it is likely that mutexes are not working correctly:
http://www.sleepycat.com/docs/ref/env/remote.html
If you need multi-threaded read-write access from more than one system,
you will need to implement some kind of network communication, such as
DCOM or .NET remoting.
Regards,
Michael. |