I have a problem I am trying to solve. I have a rather large
application that uses Postgresql. For performance reasons I
would like to run it on multiple machines. I ran into a problem
that I am trying to solve and the easiest solution seems to
involve using table/record locking in Postgresql.
What I need to do is simulate "critical sections" across these
multiple machines. I was thinking that I could construct a table
and set it up to do either record or table locking. Will this
cause the Postgresql server to hold off the other "applications"
so long as one of them is already using the record?
Thanks in advance,
Chance
> What I need to do is simulate "critical sections" across these
> multiple machines. I was thinking that I could construct a table
[quoted text clipped - 4 lines]
> Thanks in advance,
> Chance
Your problem seems to be similar to mine. Try to read my post
"Monitoring client applications: a very difficult problem" at
comp.databases.postgresql...
I hope it will help.
P.86
Chance Ginger - 20 Apr 2006 00:42 GMT
>> What I need to do is simulate "critical sections" across these
>> multiple machines. I was thinking that I could construct a table
[quoted text clipped - 11 lines]
> I hope it will help.
> P.86
Thanks. I thought it would work I just wanted to be sure...I have
used MySql more than I have used Postgresql.
Peace,
CG.