[Neo4j] gremlin - sideEffect - println via REST, AJAX, CURL

2011-10-20 Thread himmel24
Hallo, gremlin is working quite well in the gremlin console this is working there: also this works well: but the following *isn't working with CURL, AJAX, REST* the sideEffect - println comand is simply ignored. There are no error messages. I tried many encoding types: no success

Re: [Neo4j] gremlin - sideEffect - println via REST, AJAX, CURL

2011-10-20 Thread Peter Neubauer
Hi there, seems your mail is truncated, the second part is missing content. I agree, the output stream does not seem to be catched, could you raise an issue on that in https://github.com/neo4j/community/issues?sort=createddirection=descstate=open to start with? Label it with webadmin and bug,

Re: [Neo4j] Neo4jRestNet Update

2011-10-20 Thread Peter Neubauer
Very, very cool Michael. Would it be possible to lab around a .NET parser for Cypher, too, so we can get an impression of how hard it would be to make one? Also, have you checked with Romiko and Tatham around possibly merging the different clients (see e.g.

Re: [Neo4j] .Net Data Provider for Neo4j

2011-10-20 Thread Peter Neubauer
Christian, there are at least two projects for .NET, http://hg.readify.net/neo4jclient/wiki/Home and https://github.com/SepiaGroup/Neo4jRestNet that seem to give a lot of goodies to the .NET world Feel free to try out and report back! Cheers, /peter neubauer GTalk:      neubauer.peter Skype   

Re: [Neo4j] .Net Data Provider for Neo4j

2011-10-20 Thread Romiko Derbynew
http://hg.readify.net/neo4jclient Sent from my iPhone On 20/10/2011, at 6:11 AM, Christian Straight protosap...@mightyelephant.com wrote: Anybody working on a neo4j .Net Data Provider? regards, Christian Straight .:. Typed with thumbs and sent from my HTC Evo

Re: [Neo4j] Neo4j in GIS Applications

2011-10-20 Thread danielb
Hello Peter, that sounds fine. I will probably compare some quad-tree against the existing R-tree implementation. It will take some time until I start with implementing something, but I will keep you informed. Regards, Daniel -- View this message in context:

Re: [Neo4j] Articles Tags - Beginner Question

2011-10-20 Thread Hesham
Ok, I think I got the logic behind it. Thanks. -- View this message in context: http://neo4j-community-discussions.438527.n3.nabble.com/Articles-Tags-Beginner-Question-tp3422705p3438018.html Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.

[Neo4j] Neography - remove a specific relations ship

2011-10-20 Thread Hesham
I'm creating the following relationships in one of the controllers: Graph.neo.create_relationship(rel, node_a, node_b) Graph.neo.create_relationship(rel, node_c node_b) Graph.neo.create_relationship(rel, node_d, node_b) In another controller I will need to remove a specific relationship, lets

Re: [Neo4j] Neo4jRestNet Update

2011-10-20 Thread KanTube
Peter, I have been looking at the Cypher interface and have started to implement it, however I will not be able to duplicate the syntax as closely as I did for Gremlin. The issue is that the operators that Cypher uses are not operators in C# and therefor can not be overridden. In order for me

[Neo4j] Neo4J 1.4.2 on Ubuntu 11.04

2011-10-20 Thread fernandobr
Hi, I'm having some trouble using Neo4J in Ubuntu 11.04 Linux OS. The program I've writen works fine under Windows 7 but when I tried to run it at Linux I'm experiencing some problems: org.neo4j.kernel.impl.nioneo.store.PersistenceWindowPool logWarn WARNING:

Re: [Neo4j] Neo4J 1.4.2 on Ubuntu 11.04

2011-10-20 Thread Krzysztof Raczyński
What is your memory mapped files configuration? Are you sure you aren't running out of memory? On Thu, Oct 20, 2011 at 11:14 PM, fernandobr fvdmagalh...@gmail.com wrote: Hi, I'm having some trouble using Neo4J in Ubuntu 11.04 Linux OS. The program I've writen works fine under Windows 7 but when

Re: [Neo4j] Neo4J 1.4.2 on Ubuntu 11.04

2011-10-20 Thread fernandobr
Thanks for the answer. I'm using Neo4J embedded and I didn't change the default configuration. I just started the database by doing this: GraphDatabaseService targetDB = new EmbeddedGraphDatabase(/home/fmagalhaes/GraphDB/DistDB); I'm not creating a HashMap to set properties like described here:

[Neo4j] neo4j jmx

2011-10-20 Thread Owen Marinas
Hi all, the documentation covers howto connect with jconsole to a local instance of neo4j. Any clue what to add to wrapper.conf in order to open a port to do remote monitoring ? I plan to monitor some metrics with Nagios(trough jmx) so this is my starting point. thx in advance Owen

Re: [Neo4j] Neo4J 1.4.2 on Ubuntu 11.04

2011-10-20 Thread Krzysztof Raczyński
It is worth a try. Remember that on linux, memory mapped files are allocated outside of JVM heap, so when calculating total memory usage add whatever you configured to the JVM heap. Database size on hdd doesn't mean much, mine is 80megs, but when all nodes are cached (and usually they are) it can

[Neo4j] Delete a graph in Neo4J REST server

2011-10-20 Thread andrew ton
Hello, Is there a API or a way to delete a graph in the Neo4J REST server? For example, I can send a REST request to delete the root of the graph then all nodes under that root are also removed. Thanks, ___ Neo4j mailing list User@lists.neo4j.org

[Neo4j] [bug?] Unicode node property not returned correctly from bulk REST index search

2011-10-20 Thread Nuo Yan
I have nodes with data properties with unicode (Chinese/Japanese) characters such as: {uid = 12345, name = 例子} I index such nodes with their id, so that by doing this (where users_index is the index, uid is the key, 12345 is the value): GET to /index/node/users_index/uid/12345 I can get back

Re: [Neo4j] [bug?] Unicode node property not returned correctly from bulk REST index search

2011-10-20 Thread Daniel Fitzpatrick
Possibly an issue with the client code not understanding unicode. Is there something you could use as a baseline to rule the database out eg maybe the web admin? On Oct 20, 2011 7:48 PM, Nuo Yan yan@gmail.com wrote: I have nodes with data properties with unicode (Chinese/Japanese)

Re: [Neo4j] [bug?] Unicode node property not returned correctly from bulk REST index search

2011-10-20 Thread Rick Bullotta
I doubt it, since a GET works fine. It's probably an encoding issue somewhere in the batch processing pipeline. -Original Message- From: user-boun...@lists.neo4j.org [mailto:user-boun...@lists.neo4j.org] On Behalf Of Daniel Fitzpatrick Sent: Thursday, October 20, 2011 10:37 PM To:

Re: [Neo4j] [bug?] Unicode node property not returned correctly from bulk REST index search

2011-10-20 Thread Nuo Yan
Yea, I'm pretty sure it's not a client parse issue. The data is correct in the database, and a single GET query returns the right data, only when doing the same request as a part of the bulk request, it returns busted data. It can be reproduced using curl and as well as rest client. I'm using

Re: [Neo4j] Neo4jRestNet Update

2011-10-20 Thread Tatham Oddie
Hi Kan, FYI - we added parametized Gremlin queries in our implementation and have seen a nice memory heap improvement on the Java side as a result. That is ... instead of: g.v(123).outE[[label:'FOO']] we send: { query: 'g.v(p0).outE[[label:p1]]', params: { p0: 123, p1: 'FOO' }