Hi,
I need to select an arbitrary subset of the contents of a query cache.
The contents of the query cache might be populated by:
Code:
select * from users where lname = 'Smith'
And then I would like to select subset queries that make use of the query cache:
Code:
select * from users where lname = 'Smith' and fname like '%john%'
select * from users where lname = 'Smith' and email like '%hotmail%'
The above idea is an initiative that I found on
http://fhwang.net/blog/50.html, and now I wonder whether this is possible at all using hibernate or by some other means.
:D
/Peter Odéus