This week's book giveaway is in the Agile and Other Processes forum.
We're giving away four copies of Darcy DeClute's Scrum Master Certification Guide: The Definitive Resource for Passing the CSM and PSM Exams and have Darcy DeClute on-line!
See this thread for details.

goeshome, rnd

Greenhorn
+ Follow
since Sep 26, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by goeshome, rnd

I have couple questions, will some one please help me out!!
1. I am getting confused whether I should let the server accept the client requests with different database name. For example, one client ask for "db.db", another ask for "db1.db" and manage all these instances.
It is not useful for this specific application, but whether I should do this or not.
2. If I have one server running, while some client is connecting to it, one local client also connect to it using local mode. How the lock protection works?
3. If the client try to close the db, but actually, there are still some one else connect to it, use count to solve this? If the client forgot to close it, what will be the solution.
4. For the lock, if the client lost the connection before unlock, how to ensure it will be unlocked. I see some one mention that the rmi can not ensure the sequence client request will be responded in the same thread at server side. So, it won't be possible to use thread tracking to solve this problem?