Re: [Neo4j] TTL or node expiry available ?

2011-08-19 Thread Peter Neubauer
Nope, No TTL in that respect. /peter Sent from my phone. On Aug 20, 2011 12:41 AM, "sulabh choudhury" wrote: > Hi, > > I was wondering if there is any notion of TTL in neo4jcan a node/ > relationship be automatically deleted after a certain amount of predefined > time ? > ___

Re: [Neo4j] which shortestpath algo is used in the algofactory shortestpath?

2011-08-19 Thread Peter Neubauer
Boris, The algo id using a double sided Dijkstra variant, taking possible cost functions and supernodes into account. /peter Sent from my phone. On Aug 20, 2011 5:33 AM, "Boris Kizelshteyn" wrote: > I need to document my usage of it, so it would be great if I knew :) > > Thanks! > __

[Neo4j] which shortestpath algo is used in the algofactory shortestpath?

2011-08-19 Thread Boris Kizelshteyn
I need to document my usage of it, so it would be great if I knew :) Thanks! ___ Neo4j mailing list User@lists.neo4j.org https://lists.neo4j.org/mailman/listinfo/user

Re: [Neo4j] HA Consistency

2011-08-19 Thread David Rader
In order to configure a load balancer to target all reads or all writes to the master in an HA - what's the best way to do this? For instance, if you had a single source of updates and many clients reading you might want to load balance the slaves as read-only and have the updates all flow to t

Re: [Neo4j] Indexing - Rest Api

2011-08-19 Thread Romiko Derbynew
Jim, To try answer my own question for auto bs manual. One think I like with manual is a situation where a client had multiple alsoknownas names which is a relationship IS_ALSO_KNOWN_AS Now in this case with manual index I can actualy index a reference to client node using fields from nodes r

Re: [Neo4j] EXTERNAL: Re: how to use neo4j in "server" mode w/o using HTTP/REST stuff?

2011-08-19 Thread Gautam Thaker
On 8/19/2011 4:19 AM, Jim Webber wrote: > Hi Gautam, > > If you're writing a Java application, then use the Java APIs. If you need > several instances of the application to see the same data then use Neo4j HA. > That way your application exposes your API (your service interface). OK, i have read

Re: [Neo4j] Indexing - Rest Api

2011-08-19 Thread Romiko Derbynew
Hi Jim Thanks for the response. I have built a .Net API to manage manual indexes. So basically when I create a node I have an option to parse in a collection of key/Val pairs to index the node. I'm using Lucene and fulltext. However it sounds like auto indexing might be a better option? I avoid

[Neo4j] TTL or node expiry available ?

2011-08-19 Thread sulabh choudhury
Hi, I was wondering if there is any notion of TTL in neo4jcan a node/ relationship be automatically deleted after a certain amount of predefined time ? ___ Neo4j mailing list User@lists.neo4j.org https://lists.neo4j.org/mailman/listinfo/user

[Neo4j] Spring Data Graph 1.1.0

2011-08-19 Thread Andreas Kollegger
Hello Graphistas, We are pleased to announce that the second release (1.1.0.RELEASE) of the Spring Data Graph project with Neo4j support is now available! The key new features in the Spring Data Graph 1.1.0.RELEASE include: * Added Gremlin and Cypher support * Improved Neo4j Temp

[Neo4j] paths in gremlin issue

2011-08-19 Thread Boris Kizelshteyn
Originally posted on the gremlin list... I'm not sure if I am doing something wrong or if my installation is screwed up in some way 1. I have two nodes 6098 and 18, they are connected by one hop: - gremlin> g.v(6098).outE().inV().filter{it.id==18}.paths() - ==> [v[6098], e[20626][6098-FRI

Re: [Neo4j] upgrading gremlin

2011-08-19 Thread Peter Neubauer
Boris, The plugin resides as prepackaged under system/lib. Also, this is on my todo list for neo4j 1.5, so please try the upgrade in neo4j server component where the libs are included and let me know of any issues. I hope to get to it next week, we will be in contact then I guess regarding your oth

[Neo4j] upgrading gremlin

2011-08-19 Thread Boris Kizelshteyn
Hey all, I want to upgrade from gremlin 1.1 to gremlin 1.3 in neo4j 1.4. There is no longer a gremlin plugin in the plugins directory as far as I can tell, so I am not sure if building the plugin as per pre 1.4 is the what to go. Please advise. Many thanks! ___

Re: [Neo4j] possible to query spatial indexes from gremlin?

2011-08-19 Thread Boris Kizelshteyn
> > Hey Peter, are you in Boston? If you are anytime you would like, it would > be a pleasure to meet you and show you around. > > > On Fri, Aug 19, 2011 at 8:49 AM, Peter Neubauer < > peter.neuba...@neotechnology.com> wrote: > >> Ehm, >> what does bump mean? Close or open the thread? Sorry for bei

Re: [Neo4j] possible to query spatial indexes from gremlin?

2011-08-19 Thread Peter Neubauer
Ehm, what does bump mean? Close or open the thread? Sorry for being an ignorant German :/ Btw, I would LOVE to visit MIT Media Lab at some point with my kids (hint hint)! Cheers, /peter neubauer GTalk:      neubauer.peter Skype       peter.neubauer Phone       +46 704 106975 LinkedIn   http://w

Re: [Neo4j] possible to query spatial indexes from gremlin?

2011-08-19 Thread Boris Kizelshteyn
Hi All, Peter, I just wanted to bump this thread. Thanks!!! On Thu, Aug 18, 2011 at 1:03 PM, Boris Kizelshteyn wrote: > Hi Peter, > > I'm finally trying this query out, but not getting any results. Do I need > to rebuild neo4j-spatial? I sent the index command successfully: > > >- >http>

Re: [Neo4j] how to use neo4j in "server" mode w/o using HTTP/REST stuff?

2011-08-19 Thread Jim Webber
Hi Gautam, If you're writing a Java application, then use the Java APIs. If you need several instances of the application to see the same data then use Neo4j HA. That way your application exposes your API (your service interface). The Neo4j server does the same thing but it exposes *our* API (t

Re: [Neo4j] HA consistency

2011-08-19 Thread Tuure Laurinolli
On Aug 19, 2011, at 07:57 , David Rader wrote: > It looks like the HA implementation is for eventual consistency, tunable by > how often a slave polls the master for updates from other nodes. > > With a load balanced cluster, is the best practice to simply use sticky > sessions on clients to e