Re: tracking collection modification

2008-09-08 Thread Paul Boddie
On 7 Sep, 12:54, [EMAIL PROTECTED] wrote: > I'm working on a remote object system, something kinda like Pyro. > For the purposes of caching I need to be able to tell if a given > dict / list / set has been modified. > Ideally what I'd like is for them to have a modification count > variable that in

Re: tracking collection modification

2008-09-08 Thread Diez B. Roggisch
[EMAIL PROTECTED] wrote: > On Sep 7, 8:54 pm, [EMAIL PROTECTED] wrote: >> I'm working on a remote object system, something kinda like Pyro. >> For the purposes of caching I need to be able to tell if a given >> dict / list / set has been modified. >> Ideally what I'd like is for them to have a mod

Re: tracking collection modification

2008-09-08 Thread usenet . tolomea
On Sep 7, 8:54 pm, [EMAIL PROTECTED] wrote: > I'm working on a remote object system, something kinda like Pyro. > For the purposes of caching I need to be able to tell if a given > dict / list / set has been modified. > Ideally what I'd like is for them to have a modification count > variable that

tracking collection modification

2008-09-07 Thread usenet . tolomea
I'm working on a remote object system, something kinda like Pyro. For the purposes of caching I need to be able to tell if a given dict / list / set has been modified. Ideally what I'd like is for them to have a modification count variable that increments every time the particular collection is mod