On 08/08/07, akira <[EMAIL PROTECTED]> wrote: > Hi guys! > > How is locking and concurrency support for Postgres implemented in > Storm? Should one only use transactions?
Yep, Storm sets up the database connection in the serializable isolation level. This means that you Storm can assume it is the only thing accessing the database during the transaction and cache things accordingly. This does mean that transactions may fail and need to be retried though. James. -- storm mailing list [email protected] Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/storm
