Re: Query with bitwise operation

2009-04-08 Thread Noble Paul നോബിള്‍ नोब्ळ्
I guess we must add functions for bitwise operations. say * bor * bxor * band * bcompliment These functionalities are trivial to add and may be useful for people who are familiar with bit operations --Noble On Thu, Apr 9, 2009 at 1:10 AM, Erik Hatcher wrote: > No, there is no support in the que

Re: Query with bitwise operation

2009-04-08 Thread Erik Hatcher
No, there is no support in the query parser for bit-wise queries like that. [Although there might be some funky function query magic that can do this?] My recommendation is to index each bit as a separate field (bit_0, bit_1, bit_2). You could define a dynamicField bit_* as a boolean