Lot of Thanks but I don't need the toString, I put this example because the
cache was keeping the same results in two diferents SELECT.
Read the answer to Jeff Butler if you want to help me, please :-)
2006/8/29, Larry Meadors <lmeadors@apache.org>:
>
> It's a minor one - key3.equals(key4) works as expected: it returns false.
>
> If it's critical for your application, I have committed a change that
> will add the values added to the key to the toString() to fix it, so
> you can check it out of SVN and use it until the next release.
>
> Larry
>
>
> On 8/29/06, eloy j <unidad.g.eloy@gmail.com> wrote:
> >
> >
> >
> > If you executes the following code the values are identical:
> >
> >
> >
> > CacheKey key3 = new CacheKey();
> >
> > CacheKey key4 = new CacheKey();
> >
> > key3.update("AV");
> >
> > key4.update("B7");
> >
> > System.out.println("Value 1 '" + key3.toString() + "'");
> >
> > System.out.println("Value 2 '" + key4.toString() + "'");
> >
> >
> >
> > Perhaps there is confused something to me, but it seems a bug.
> > Thanks.
> >
> >
> > Eloy GarcĂa-Borreguero Melero
>
|