[Neo4j] Fulltext indexing apparently not working when done in Batch insertion phase...

2011-06-09 Thread Pablo Pareja
Hi all! Recently I noticed that some fulltext indexes I created and populated in my project in the Batch insertion phase are not working as expected. I've carried out some tests and cannot come up with what can be going wrong. That's why I thought, ok let's try with a really basic example (mostly

Re: [Neo4j] Fulltext indexing apparently not working when done in Batch insertion phase...

2011-06-09 Thread Pablo Pareja
Hi again, I just found out that I had the wrong name for querying the actors index, still when I change it for name like this: System.out.println(index.get(name, Keanu).size()); System.out.println(index.get(name, keanu).size()); System.out.println(index.get(name, Keanu Reeves).size()); I still

Re: [Neo4j] Fulltext indexing apparently not working when done in Batch insertion phase...

2011-06-09 Thread Michael Hunger
your query key should be name not actors Michael Sent from my iBrick4 Am 09.06.2011 um 16:49 schrieb Pablo Pareja ppar...@era7.com: Hi all! Recently I noticed that some fulltext indexes I created and populated in my project in the Batch insertion phase are not working as expected. I've

Re: [Neo4j] Fulltext indexing apparently not working when done in Batch insertion phase...

2011-06-09 Thread Michael Hunger
and you should use index.query(key,querystring) not get for fulltext queries Sent from my iBrick4 Am 09.06.2011 um 17:04 schrieb Pablo Pareja ppar...@era7.com: Hi again, I just found out that I had the wrong name for querying the actors index, still when I change it for name like this:

Re: [Neo4j] Fulltext indexing apparently not working when done in Batch insertion phase...

2011-06-09 Thread Pablo Pareja
yeah, it works just fine using query(...) method instead of get(...) Thanks ;) Pablo On Thu, Jun 9, 2011 at 5:31 PM, Michael Hunger michael.hun...@neotechnology.com wrote: and you should use index.query(key,querystring) not get for fulltext queries Sent from my iBrick4 Am 09.06.2011 um