I'm using Solr and wish to be able to log queries/tokens to a database for analytics for both marketing and suggested search functionality.
I'm guessing that a Lucene filter would be a ...
I want to filter my result set before I search. I know the correct way to do this is by using the filter query (fq) parameter. However, I want to filter ...
I'm wondering if there's a way to perform a filtered search in Lucene index with a combination of Filter and Query instead of a BooleanQuery?
Since performing a query causes calculation ...
I want to pass comma seperated values in filter query (fq) of solr response, currently when i want to pass multiple categories i use OR operator.
like this fq=categoryId:3 OR categoryId:55 ...
I'm working on a project which uses Solr as its search engine. Is it possible to limit the amount of results returned by a filter query in Solr?
Thanks!
Krt_Malta
While reading "Lucene in Action 2nd edition" I came across the description of Filter classes which are could be used for result filtering in Lucene. Lucene has a lot of filters ...
in my schema i have a field (salary) which is actually a string, because it can be anything (fetched from some websites): only numbers, strings, no numbers at all. Basically, anything. ...
I'm currently implementing a Solr solution where a user is able to select various options to search for a product. I can now take all those options and put them together ...
Is it possible to search (with apache solr) for items which are in one of few categories using filter query, eg items in category 'computers' OR 'phones'
When I want to search ...
Can anyone help me to write a function query which compares the distance between a fixed point (supplied in the query) and a point stored per document with a distance stored ...
I want to modify this method (implement my own version of it) but I can't find the real source. So far I've only found out that it is inherited from Searcher, ...