Zend_Search_Lucene and range search
Posted
by ranza
on Stack Overflow
See other posts from Stack Overflow
or by ranza
Published on 2010-04-09T10:31:46Z
Indexed on
2010/04/09
10:33 UTC
Read the original article
Hit count: 350
I have a bunch of int key fields in my index and trying to do a simple range search like this:
`gender:1 AND height:[120 TO 180]`
This should give me male in the height range 120 to 180. But for some reason i get this exception:
`At least one range query boundary term must be non-empty term`
How would i debug this? Is it just Zend_Search_Lucene being buggy?
© Stack Overflow or respective owner