how to cache table data in java
we a facility in .net called recordset which stores the table data in the cache and can be used as table to fetch data from it which makes data retrival fast
do we have anything like that in java, if so how to cache them, how to retrive them, what is the access time, would it be faster than fetching from database, can anybody help implementing it.开发者_StackOverflow中文版...
To cache already fetched data you might be interested in Ehcache
You may want to check the java.sql package Specially the ResultSet, Rowset classes
精彩评论