Re: [Neo4j] JAXRS Server Extensions

2011-06-10 Thread Kiss, Miklós
Great! I'm looking forward to test the new version. Hi Miklós, Batch updates through the REST API will be supported from 1.4 M4 which should be released today - so no need to roll your own. Jim ___ Neo4j mailing list User@lists.neo4j.org

[Neo4j] JAXRS Server Extensions

2011-06-08 Thread Kiss, Miklós
Hello, I'm experimenting with my own server extensions to speed up batch querying and batch update of the graph. Part of my extensions are working as expected giving me significant performance boost on large queries. Now I'm trying to implement batch update of multiple nodes. I was thinking

[Neo4j] Concurrent graph usage, design guidelines

2011-02-28 Thread Kiss Miklós
Hi all, I'm wondering if I'm using the Neo4j graph database right. My current graph structure contains many relations for every single node. Some of the nodes have 1 relations which is hard to traverse using REST server (collecting nodes is heavy on memory and transmitting is heavy on

Re: [Neo4j] Concurrent graph usage, design guidelines

2011-02-28 Thread Kiss Miklós
the GraphDatabaseService object. Perhaps you can also tell us a bit about your domain and how it is modelled to support you there. Cheers Michael Am 28.02.2011 um 10:19 schrieb Kiss Miklós: Hi all, I'm wondering if I'm using the Neo4j graph database right. My current graph structure contains many

Re: [Neo4j] Concurrent graph usage, design guidelines

2011-02-28 Thread Kiss Miklós
the traversal state in the session and continuously pull from that). HTH Michael Am 28.02.2011 um 11:36 schrieb Kiss Miklós: Thanks for the ideas! OK, I'll tell a bit more about my current scenario. I use the graph to store medium sized texts (various sizes, 1 - 30kb) with some properties

[Neo4j] server with big (huge?) graph

2011-02-23 Thread Kiss Miklós
Hi all, I'd like to get ideas on how to handle a (relatively) big graph. My graph is stored in a neo4j server. The structure is simple but highly interconnected: - I have nodes containing longer texts - and I have many nodes containing tokens of those texts. Relationships connect tokens to

Re: [Neo4j] server with big (huge?) graph

2011-02-23 Thread Kiss Miklós
Thanks for the response. Then my idea of a server plugin wasn't a bad idea, great. My next question is then: how do I traverse only a part of the possible sub-graph? I mean: let's suppose I start traversing from node 'A' and want to get all 2 length paths on relationships 'TYPE_X' and 'TYPE_Y'.

Re: [Neo4j] 1.2 server

2011-01-07 Thread Kiss Miklós
, right? How can I check indexes from webadmin console? Thanks, Miklós Kiss 2011.01.07. 8:40 keltezéssel, Kiss Miklós írta: Thanks for the replies. Yes that double redirect is a bit silly. I also noticed that FF forgets the headers after a redirect and makes poster plugin not to work

Re: [Neo4j] 1.2 server

2011-01-07 Thread Kiss Miklós
can I check indexes from webadmin console? To access the old indexes one has to write a plugin and mount a URI for that... maybe somone has already done it? Thanks, Miklós Kiss 2011.01.07. 8:40 keltezéssel, Kiss Miklós írta: Thanks for the replies. Yes that double redirect is a bit silly

Re: [Neo4j] 1.2 server

2011-01-07 Thread Kiss Miklós
the old indexes one has to write a plugin and mount a URI for that... maybe somone has already done it? Thanks, Miklós Kiss 2011.01.07. 8:40 keltezéssel, Kiss Miklós írta: Thanks for the replies. Yes that double redirect is a bit silly. I also noticed that FF forgets the headers after

[Neo4j] 1.2 server

2011-01-06 Thread Kiss Miklós
Hello, I just realized that the 1.2 distribution contains now the new version of the old REST server! Great news! I was using 0.8 for testing and now I want to migrate my codes to 1.2 and I got stuck. I extracted the zip and started the server from console. I can access it from browser at the

Re: [Neo4j] 1.2 server

2011-01-06 Thread Kiss Miklós
2011.01.06. 16:21 keltezéssel, Rick Otten írta: FWIW, something I use frequently... An easy way to capture everything you are sending is to use netcat. In one window: $ netcat -p 7474 -l Tells netcat to listen on port 7474. In another window, run your tool which is sending the data.

Re: [Neo4j] 1.2 server

2011-01-06 Thread Kiss Miklós
Thanks for the replies. Yes that double redirect is a bit silly. I also noticed that FF forgets the headers after a redirect and makes poster plugin not to work as expected. Fortunately the Java HttpURLConnection (which I use) does remember the preset headers after a redirect. I had a look

[Neo4j] javascript prune evaluator

2010-12-10 Thread Kiss Miklós
Hello, where can I find a detaled documentation on how to use JavaScript to write prune evaluators? I'm wondering if there is a way to limit the number of returned nodes based on item count? I don't want to accidentally download hundreds of MBs. Also I want to know the other possibilites of

Re: [Neo4j] javascript prune evaluator

2010-12-10 Thread Kiss Miklós
Thanks for the detailed description. If I understand it well the current REST API doesn't support this kind of pruning? I didn't mention it last time but I'm accessing the DB through REST API. I'll have to wait for the next server release :) MikKi Miklos, to limit the number of returned

Re: [Neo4j] [Neo] Transactions in Neo4j REST Server

2010-11-02 Thread Kiss Miklós
Hi Jim, Yes, I mean controlling transaction lifecycle. Support for bulk uploading won't fit all my needs. I guess I'll have to write my own DB server for my own needs. MikKi 2010.10.29. 17:35 keltezéssel, Jim Webber írta: Hi MikKi, Transactions are everywhere in Neo4j, in fact each time you

[Neo4j] REST - add to index

2010-11-02 Thread Kiss Miklós
Hello, I'm trying to write basic functionality to test the capabilities of the neo4j REST standalone 0.8. Everything seems pretty obvious so far except for adding to index. I always receive HTTP 400 when I try to insert something to the index. I'm sending this to the server: POST

Re: [Neo4j] REST - add to index

2010-11-02 Thread Kiss Miklós
It may be that you're missing quotations around the node URI (since the server expects JSON format). Look at http://components.neo4j.org/neo4j-rest/#Add_to_index for more information Thanks, this was the problem :) (I'm using that page as a reference, I just missed the quotation.)

Re: [Neo4j] [Neo] Transactions in Neo4j REST Server

2010-11-02 Thread Kiss Miklós
widespread enough that other folks would want it too. Jim On 2 Nov 2010, at 09:16, Kiss Miklós wrote: Hi Jim, Yes, I mean controlling transaction lifecycle. Support for bulk uploading won't fit all my needs. I guess I'll have to write my own DB server for my own needs. MikKi

Re: [Neo4j] [Neo] Transactions in Neo4j REST Server

2010-10-29 Thread Kiss Miklós
Hi all, I'd like to ask about the status of neo4j REST transaction support. I'm using 0.8 and as far as I know it doesn't support it. Will it be supported sometime in the near future (beginning of 2011)? Or shall I search for something different than neo4j? Regards, MikKi 2010.05.20. 21:05

Re: [Neo] Is neo4j a good soultion?

2010-05-17 Thread Kiss Miklós
I enabled the lucene index cache for the mostly used properties and it made a huge difference! Regarding the VM heap size, I started with 128MB but already tried to increase it to 512MB but didn't help. Now I'm trying to estimate the actual memory requirement. I guess that using lucene index

[Neo] Is neo4j a good soultion?

2010-05-10 Thread Kiss Miklós
Hello, I'd like to ask if using Neo4j would be a good solution for the following scenario. I have an application which performs some natural language text analysis. I want to put the results of this analysis into a database. I have words, stems, collocations, themes and many relations between

Re: [Neo] neo4j commons

2010-04-30 Thread Kiss Miklós
tell me please? Thanks, Miklos Hi! Commons is included in the Neo4j kernel since the latest snapshots: http://m2.neo4j.org/org/neo4j/neo4j-kernel/1.1-SNAPSHOT/ For the 1.0 release, download packages of commons are located here: http://m2.neo4j.org/org/neo4j/neo4j-commons/1.0/ /anders Kiss

Re: [Neo] neo4j commons

2010-04-30 Thread Kiss Miklós
of commons are located here: http://m2.neo4j.org/org/neo4j/neo4j-commons/1.0/ /anders Kiss Miklós wrote: Hello, I'm trying to make neo4j database up and running with basic indexing service in java. Everything works fine except for the indexing: I can't find the org.neo4j.commons package

[Neo] neo4j commons

2010-04-29 Thread Kiss Miklós
Hello, I'm trying to make neo4j database up and running with basic indexing service in java. Everything works fine except for the indexing: I can't find the org.neo4j.commons package. The link on neo4j's web page is broken: https://svn.neo4j.org/components/commons/trunk/ Where can I download