RE: [collections][PATCH] LRUMap - license, docs update

2002-02-16 Thread Aaron Smuts
t; Subject: Re: [collections][PATCH] LRUMap - license, docs update > > - Original Message - > From: "Michael Smith" <[EMAIL PROTECTED]> > > > Maybe renaming it to FastLRUMap that approximates LRU but > > > isn't totally > > > accurat

Re: [collections][PATCH] LRUMap - license, docs update

2002-02-15 Thread Michael A. Smith
On Fri, 15 Feb 2002, Morgan Delagrange wrote: > IMO, moving an item to the front upon any get or put is precisely what is > implied by LRU. I think someone may want to take on a LFUMap class too, but > that's much more complicated. agreed. I'm tempted to take on an LFUMap, but haven't had the t

Re: [collections][PATCH] LRUMap - license, docs update

2002-02-15 Thread Morgan Delagrange
- Original Message - From: "James Strachan" <[EMAIL PROTECTED]> To: "Jakarta Commons Developers List" <[EMAIL PROTECTED]>; "Morgan Delagrange" <[EMAIL PROTECTED]> Sent: Friday, February 15, 2002 10:47 AM Subject: Re: [collections][PATCH]

Re: [collections][PATCH] LRUMap - license, docs update

2002-02-15 Thread James Strachan
- Original Message - From: "Morgan Delagrange" <[EMAIL PROTECTED]> > - Original Message - > From: "Michael Smith" <[EMAIL PROTECTED]> > To: "Jakarta Commons Developers List" <[EMAIL PROTECTED]> > Sent: Friday, February

Re: [collections][PATCH] LRUMap - license, docs update

2002-02-15 Thread Morgan Delagrange
- Original Message - From: "Michael Smith" <[EMAIL PROTECTED]> To: "Jakarta Commons Developers List" <[EMAIL PROTECTED]> Sent: Friday, February 15, 2002 7:41 AM Subject: RE: [collections][PATCH] LRUMap - license, docs update > -Original Message-

RE: [collections][PATCH] LRUMap - license, docs update

2002-02-15 Thread Aaron Smuts
> -Original Message- > From: James Strachan [mailto:[EMAIL PROTECTED]] > Sent: Friday, February 15, 2002 10:28 AM > To: Jakarta Commons Developers List > Subject: Re: [collections][PATCH] LRUMap - license, docs update > > > Can I get commit access to collecti

Re: [collections][PATCH] LRUMap - license, docs update

2002-02-15 Thread James Strachan
> Can I get commit access to collections if it is going there? I'm sure you could. You're already a jakarta committer right? (Turbine-stratum?) So it'd just take a vote to get karma I think James _ Do You Yahoo!? Get your free @yahoo.

RE: [collections][PATCH] LRUMap - license, docs update

2002-02-15 Thread Aaron Smuts
Can I get commit access to collections if it is going there? > -Original Message- > From: James Strachan [mailto:[EMAIL PROTECTED]] > Sent: Friday, February 15, 2002 10:04 AM > To: Jakarta Commons Developers List > Subject: Re: [collections][PATCH] LRUMap - license, docs u

Re: [collections][PATCH] LRUMap - license, docs update

2002-02-15 Thread James Strachan
From: "Aaron Smuts" <[EMAIL PROTECTED]> > I think that this would mostly involve changing the name and adding a few > simple methods. Cool. > How does something get to collections? Just submit a patch. Hopefully Michael will be a committer soon so he'll probably jump in and apply it first ;-)

RE: [collections][PATCH] LRUMap - license, docs update

2002-02-15 Thread Aaron Smuts
s Developers List > Subject: Re: [collections][PATCH] LRUMap - license, docs update > > From: "Aaron Smuts" <[EMAIL PROTECTED]> > > Or you could use what I put in stratum. > > You mean LRUStore thats in the org.apache.stratum.util.lru package? If so > it&#x

RE: [collections][PATCH] LRUMap - license, docs update

2002-02-15 Thread Michael Smith
-Original Message- From: James Strachan [mailto:[EMAIL PROTECTED]] > - Original Message - > From: "Michael Smith" <[EMAIL PROTECTED]> > > > Maybe renaming it to FastLRUMap that approximates LRU but > > > isn't totally > > > accurate in all circumstances might help? > > > > To me, t

RE: [collections][PATCH] LRUMap - license, docs update

2002-02-10 Thread Michael Smith
From: James Strachan [mailto:[EMAIL PROTECTED]] > I've also been pondering a solution to the LRU issue that > preserves the > efficiency of the bubble list (and avoids expensive tree or > count-indexing > data structuers) but solves the problem that Aaron found. > Still not had any > bright ideas

Re: [collections][PATCH] LRUMap - license, docs update

2002-02-10 Thread James Strachan
it to FastLRUMap that approximates LRU but isn't totally accurate in all circumstances might help? James - Original Message - From: "Michael Smith" <[EMAIL PROTECTED]> To: "Jakarta Commons Developers List" <[EMAIL PROTECTED]> Sent: Sunday, February 10, 2002 5:

[collections][PATCH] LRUMap - license, docs update

2002-02-09 Thread Michael Smith
Changed license to proper long form. Added warnings to class documenation about the problems the class has. FYI: I plan on revisiting this class to address the following problems (I documentated these in the patch so users of the class are also aware the problem exists): - LRU algorithm is not

[collections][PATCH] LRUMap - license, docs update

2002-02-03 Thread Michael Smith
Fixes in this patch: - Changed license to proper long form. - Added warnings to class documenation about the problems the class has. FYI: I plan on revisiting this class to address the following problems (I documentated these in the patch so users of the class are also aware the problem exist