I just read this response, sorry.
I think this is not possible OOTB
On Sat, Aug 20, 2011 at 4:30 PM, jame vaalet wrote:
> thanks tomas ..
> can we set querywindowsize of particular query through url ?
> say, i want only a particular set of query's result to be cached and not
> other queries . i
thanks tomas ..
can we set querywindowsize of particular query through url ?
say, i want only a particular set of query's result to be cached and not
other queries . is it possible to control this query cache results and
window size for each query separately ?
2011/8/19 Tomás Fernández Löbbe
>
>From my understanding, seeing the cache as a set of key-value pairs, this
cache has the query as key and the list of IDs resulting from the query as
values. When the exact same query is issued, it will be found as key in this
cache, and Solr will already have the list of IDs that match it.
If you
wiki says *"size
The maximum number of entries in the cache."
andqueryResultCache
This cache stores ordered sets of document IDs — the top N results of a
query ordered by some criteria.
*
doesn't it mean number of document ids rather than number of queries ?
2011/8/19 Tomás Fernández Löbbe
Hi Jame, the size for the queryResultCache is the number of queries that
will fit into this cache. AutowarmCount is the number of queries that are
going to be copyed from the old cache to the new cache when a commit occurrs
(actually, the queries are going to be executed again agains the new
IndexS
hi,
i understand that queryResultCache tag in solrconfig is the one which
determines the cache size of SOLR in jvm.
out of the different attributes what is size? Is it the amount of memory
reserved in bytes ? or number of doc ids cached ? or is it the number of
queries it will cache?
similarly