vote up 0 vote down star

What is the best way to implement fast queue where multiple users try to access to about 100 000 records. Only one user can get one unique row. Now im using sql database (firebird) but there is a lot of problems deadlocks / high database load.

flag
Does "access" mean read or write? – Tomalak Apr 29 at 7:07

1 Answer

vote up 1 vote down

Most of the time, deadlocks are caused by bad transaction logic.

In general, the transactions have to be short (the shorter the better).

You can start by reading some doc:

http://www.firebirdsql.org/doc/whitepapers/fb_vs_ibm_vs_oracle.htm

http://www.ibphoenix.com/main.nfs?a=ibphoenix&page=ibp_expert4

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.