Re: Cross-process dictionary/hashtable

2006-09-18 Thread Sandra-24
I looked at posh, and read the report on it, it's very interesting, but it will not work for me. Posh requires that it forks the processes, but in mod_python the processes were forked by apache and use different interpreters. Calvin Spealman wrote: > Maybe what you want is something like memcache

Re: Cross-process dictionary/hashtable

2006-09-18 Thread Calvin Spealman
On 18 Sep 2006 12:44:32 -0700, Sandra-24 <[EMAIL PROTECTED]> wrote: > A dictionary that can be shared across processes without being > marshaled? > > Is there such a thing already for python? > > If not is there one for C maybe? > > I was just thinking how useful such a thing could be. It's a great

Re: Cross-process dictionary/hashtable

2006-09-18 Thread Rob Wolfe
"Sandra-24" <[EMAIL PROTECTED]> writes: > A dictionary that can be shared across processes without being > marshaled? > > Is there such a thing already for python? Check this out: http://poshmodule.sourceforge.net/ -- HTH, Rob -- http://mail.python.org/mailman/listinfo/python-list

Cross-process dictionary/hashtable

2006-09-18 Thread Sandra-24
A dictionary that can be shared across processes without being marshaled? Is there such a thing already for python? If not is there one for C maybe? I was just thinking how useful such a thing could be. It's a great way to share things between processes. For example I use a cache that subclasses