It will cache several objects returned, depending upon the cache controller specified. One thing to be aware of is that the cache is not aware of object identity - which means that if you update *anything* in that cache, all of the objects in the cache are flushed, not just the one that was updated.
Larry On 6/28/05, dragos moraru <[EMAIL PROTECTED]> wrote: > > HI! > I have a SQL select to return only one resutl each time, something like: > Select * from product where id=#value# > > and i want to cache the results. I don't know if the cache-model > configuration form ibatis will store every object the query returns or it > will replace each time the last object with the new one returned by the > select. > > Thanks
