On Feb 8, 12:14 pm, "venkatbo" <[EMAIL PROTECTED]> wrote: > Right now I'm using pickcle-based (File) sessions using > CP's sessionfilter, as I found the RAM based CP sessions > buggy when used with proxies such as lighty. > > I was hoping to make use of a RAM based approach since the > data being stored is sensitive and need to move it out of pickled > files.
A RAM-based approach is fine, but you still might consider using pickle when storing your objects--that will allow competing threads to possess two separate copies of the same object. You'll still have to manage conflicts on write, of course, but it will free you from having to worry about read locks. [Dejavu's RAM and shelve stores use pickle in this way, for example.] Robert Brewer System Architect Amor Ministries [EMAIL PROTECTED] --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/turbogears?hl=en -~----------~----~----~----~------~----~------~--~---

