ByteArrayInputStream is=new ByteArrayInputStream(w.getContents());
GZIPInputStream gs = new GZIPInputStream(is);
DataInputStream dis = new DataInputStream(gs);
search = new Search(locator);
search.readFields(dis);
long delta=System.currentTimeMillis()-time;
if(LOG.isDebugEnabled()){
LOG.debug("Decompressing cache entry took: " + delta + "ms.");
}