Re: [Neo4j] auto indexes in REST in 1.4?

2011-07-30 Thread dhsieh
Does one need to specify the following list of node_keys_indexable relationship_keys_indexable in neo4j.property to enable auto indexing for those node/relationship properties? Also, will they work if those properties were created prior to adding the list in neo4j.property file?

Re: [Neo4j] auto indexes in REST in 1.4?

2011-07-28 Thread Jim Webber
Try using the GA version. I don't think auto-indexing was available in M02. Jim On 28 Jul 2011, at 00:51, dhsieh wrote: Same probelm here. Downloaded neo4j-enterprise-1.4.M02-unix.tar.gz with deafult installtion on Linux. Added the foolwoing lines to neo4j.properties file:

Re: [Neo4j] auto indexes in REST in 1.4?

2011-07-28 Thread dhsieh
Where is the GA version download link? I can't find it in http://neo4j.org/download. -- View this message in context: http://neo4j-community-discussions.438527.n3.nabble.com/Neo4j-auto-indexes-in-REST-in-1-4-tp3159205p3206845.html Sent from the Neo4j Community Discussions mailing list archive at

Re: [Neo4j] auto indexes in REST in 1.4?

2011-07-28 Thread Chris Gioran
In the upper left part where you can select edition and platform, the Select Release drop down list has a Current stable version (1.4) option. Select that instead of the default Current Milestone version option and you should be fine. cheers, CG On Thu, Jul 28, 2011 at 5:32 PM, dhsieh

Re: [Neo4j] auto indexes in REST in 1.4?

2011-07-27 Thread dhsieh
Same probelm here. Downloaded neo4j-enterprise-1.4.M02-unix.tar.gz with deafult installtion on Linux. Added the foolwoing lines to neo4j.properties file: node_auto_indexing=true node_keys_indexable=name,age relationship_auto_indexing=true relationship_keys_indexable=ROOT,KNOWS,CODED_BY

Re: [Neo4j] auto indexes in REST in 1.4?

2011-07-18 Thread mike_t
Has anyone tried out the auto indexing feature? Did it works? -- View this message in context: http://neo4j-community-discussions.438527.n3.nabble.com/Neo4j-auto-indexes-in-REST-in-1-4-tp3159205p3178756.html Sent from the Neo4J Community Discussions mailing list archive at Nabble.com.

Re: [Neo4j] auto indexes in REST in 1.4?

2011-07-18 Thread Aseem Kishore
Mike, we just did successfully try out the auto-indexing feature, and we're able to use it over the REST API just fine, FYI. Good luck! Aseem On Mon, Jul 18, 2011 at 6:37 AM, mike_t t.pr...@gmx.net wrote: Has anyone tried out the auto indexing feature? Did it works? -- View this message

Re: [Neo4j] auto indexes in REST in 1.4?

2011-07-13 Thread mike_t
I tried to configure the auto index for neo4j. -- neo4j.properties node_auto_indexing=true node_keys_indexable=name -- I created a node with a property name and value alex. When I request for the index with the url

Re: [Neo4j] auto indexes in REST in 1.4?

2011-07-12 Thread mike_t
Please tell me, how can I do that? I couldnĀ“t find anything about it in the api doc (http://components.neo4j.org/neo4j-server/snapshot/rest.html) -- View this message in context: http://neo4j-user-list.438527.n3.nabble.com/Neo4j-auto-indexes-in-REST-in-1-4-tp3159205p3162053.html Sent from the

Re: [Neo4j] auto indexes in REST in 1.4?

2011-07-12 Thread Matt Luongo
+1, we could use configuration through REST as well. -- Matt Luongo Co-Founder, Scholr.ly On Tue, Jul 12, 2011 at 6:45 AM, mike_t t.pr...@gmx.net wrote: Please tell me, how can I do that? I couldnĀ“t find anything about it in the api doc

Re: [Neo4j] auto indexes in REST in 1.4?

2011-07-12 Thread Javier de la Rosa
On Tue, Jul 12, 2011 at 16:32, Matt Luongo m...@scholr.ly wrote: +1, we could use configuration through REST as well. +1, It would be bery useful. -- Javier de la Rosa http://versae.es ___ Neo4j mailing list User@lists.neo4j.org

Re: [Neo4j] auto indexes in REST in 1.4?

2011-07-12 Thread Jacob Hansson
It is currently possible to configure auto indexing for the server using the neo4j.properties configuration file. Something like this should work: node_auto_indexing=true node_keys_indexable=name, age relationship_auto_indexing=true relationship_keys_indexable=strength, someotherkey

[Neo4j] auto indexes in REST in 1.4?

2011-07-11 Thread Boris Kizelshteyn
Hi All, Does the new improved REST api support the auto indexes feature? What about indexing and querying numbers? If so I would really appreciate some examples. Many thanks! ___ Neo4j mailing list User@lists.neo4j.org

Re: [Neo4j] auto indexes in REST in 1.4?

2011-07-11 Thread Aseem Kishore
+1 re: REST API supporting auto-indexing. =) Aseem On Mon, Jul 11, 2011 at 9:39 AM, Boris Kizelshteyn bo...@popcha.com wrote: Hi All, Does the new improved REST api support the auto indexes feature? What about indexing and querying numbers? If so I would really appreciate some examples.