OrientDB 1.7.8
Orient Lucene: 1.7.4
How does the lucene index work for embeddedmap?
create class Test
create property Test.emap embeddedmap string
create index Test.emap on Test (emap) fulltext engine lucene
insert into Test set emap = {"key1":"value1", "key2":"value2"}
select from Test where emap lucene 'key1'
(record found - ok)
select from Test where emap lucene 'value1'
(record not found - i would expect it to be found)
select from Test where emap.key1 lucene 'value1'
(record found)
select from Test where emap.key1 lucene 'nonexistent'
(record found????)
select from Test where emap.blahblah lucene 'nonexistent'
(record found????)
Am I missing something in the documentation?
--
---
You received this message because you are subscribed to the Google Groups
"OrientDB" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.