Hi, Yes, it's the cache. But not document/query/filter cache, but http cache. Yes, you can disable it in solrconfig.xml You can also modify the URL slightly (e.g. add &foo=1 to the end) to trick your browser into thinking you are looking at a different URL/page.
Otis -- Sematext -- http://sematext.com/ -- Solr - Lucene - Nutch ----- Original Message ---- > From: Smith G <gudumba.sm...@gmail.com> > To: solr-user@lucene.apache.org > Sent: Fri, January 15, 2010 7:57:23 AM > Subject: recent query execution cache in Solr > > Hello, > I have some project-specific config files, which are being > used to boost some important fields. These files are read by Solr for > the first query and then stored in an Object, and used for the > following queries. > As those files are read for the first request, I need to > restart Solr when I change some info in the config fiels. My problem > is, while testing when I submit a query its being executed with > perfect effect of config files. After that , I change info in config > files and restart Solr and execute same query again, but this time it > gives me the same result as the previous with no effect of > modification in config files. If I execute a complete new query then > I can see the effect of new config file ( using the debug option I > could exactly figure out the effect ). As per my understanding It > could be because of Solr cache, but I am not sure. I want to test > variation in the results for different config files for the same > query, which I could not achieve because of this behaviour. > What could be the solution? like Is there any way to clear Solr > cache? or some other? I guess its not wise to turn-off Solr cache > permanently. > Thanks.