Re: how to create a custom queryparse to handle new functions

2009-09-11 Thread Chris Hostetter
I think you and Shalin are having a vocabulary problem. you used the term function which has a specific meaning in Solr, if you want to write a new function, which works with the existing Function syntax solr provides, and can be nested inside of other functions, then what you want to write

Re: how to create a custom queryparse to handle new functions

2009-09-04 Thread Shalin Shekhar Mangar
On Sat, Sep 5, 2009 at 2:15 AM, gdeconto gerald.deco...@topproducer.comwrote: Can someone point me in the general direction of how to create a custom queryparser that would allow me to create custom query commands like this:

Re: how to create a custom queryparse to handle new functions

2009-09-04 Thread Avlesh Singh
You do not need to create a custom query parser for this. You just need to create a custom function query. Look at one of the existing function queries in Solr as an example. This is where the need originates from -