Re: [Neo] Demo of a Neo4j.rb web application

2009-10-14 Thread Anders Nawroth
Hi! > http://79.125.12.243/people > Really nice! I added a link to this demo in the Neo4j wiki as well: http://wiki.neo4j.org/content/Neo4j_In_The_Wild /anders ___ Neo mailing list User@lists.neo4j.org https://lists.neo4j.org/mailman/listinfo/user

Re: [Neo] Multiple applications accessing same database

2009-10-14 Thread Peter Neubauer
Hi Demian, absolutely, the error is no bug and correct, Neo4j will require a slightly different concurrent-client strategy and architecture from your current setup, but that is no big problem ... HTH /peter GTalk: neubauer.peter Skype peter.neubauer Phone +46 704 106975 LinkedIn

Re: [Neo] Multiple applications accessing same database

2009-10-14 Thread Demian Hess
I would need a "neo server" so that multiple applications can run concurrently using the same data store. I don't need anything at this moment, since I am only evaluating the software for my company; I just wanted to make sure the error I saw was "by design". -Original Message- From: us

[Neo] Demo of a Neo4j.rb web application

2009-10-14 Thread Andreas Ronge
Hi I just deployed the peoplemap written by Sasha Agafonoff http://79.125.12.243/people Wiki: http://wiki.github.com/sashaagafonoff/peoplemap It's slow (no optimization anywhere) and buggy. But it shows what you can do with neo4j and Ruby on Rails and some flash visualization. /Andreas ___

Re: [Neo] Problems using Traverse

2009-10-14 Thread Andrea Puddu
Johan, My graph has only one type of relationship and it is not hierarchical. More specifically, it represent an encyclopedia where nodes are the Pages and arcs are Links from a Page to another Page. Regards, Andrea Il giorno 14/ott/2009, alle ore 17.26, Johan Svensson ha scritto: > Andrea

Re: [Neo] Problems using Traverse

2009-10-14 Thread Johan Svensson
Andrea, Depending on your graph and the traversal you need to perform there are more memory efficient ways to do it using the core API (Node.getRelationships* methods). If you could describe a bit more in detail how your graph looks (relationship types, is it hierarchical or a graph that have cyc

Re: [Neo] Limiting Dijkstra's search algorithm to maximum degrees of depth.

2009-10-14 Thread Johan Svensson
Hi, I patched the FindSinglePath to support direction. See: https://trac.neo4j.org/changeset/3125 I don't know how hard it would be to add a depth limit to the current Dijkstra implementation since I didn't implement it myself. The problem is that by adding a depth limit you will break the algori

Re: [Neo] Graph visualization on the web

2009-10-14 Thread Rob Challen
Out of scope of the original topic but I just also was directed to cytoscape from the bioinformatics world which also looks interesting. http://www.cytoscape.org/index.php On Wed, Oct 14, 2009 at 1:03 PM, Morten Wang wrote: > * Olivier Rossel > > in java, i use jung or prefuse. > > but it is sw

Re: [Neo] Problems using Traverse

2009-10-14 Thread Andrea Puddu
Hi Johan, thank you for your fast reply. The answer to your question is: Maybe all the nodes of the graph because (this is what I'm trying to understand), my graph is a great unique connected component. My traverser is something like: node.traverse( Traverser.Order.BREADH_FIRST, StopEvaluat

Re: [Neo] Graph visualization on the web

2009-10-14 Thread Morten Wang
* Olivier Rossel > in java, i use jung or prefuse. > but it is swing based. > so pretty difficult to port on web apps. I'm using JUNG too. Most of their examples are applets, so if that's within scope it's a possible solution. When looking for toolkits I also looked at Prefuse and Piccolo2D, but

Re: [Neo] Graph visualization on the web

2009-10-14 Thread Rob Challen
I think also that the treebolic applet can also input GraphML and maybe Graphviz dot too, Can't remember the details - but I think you would loose the ability to lazily load braches. On Wed, Oct 14, 2009 at 11:44 AM, Tobias Ivarsson < tobias.ivars...@neotechnology.com> wrote: > On Wed, Oct 14, 2

Re: [Neo] Problems using Traverse

2009-10-14 Thread Johan Svensson
Hi, How many nodes do you visit during the traversal? Currently the traverser implementation makes sure you will not visit the same node twice and it does this by storing the nodes visited in a set. -Johan On Wed, Oct 14, 2009 at 12:33 PM, Andrea Puddu wrote: > HI, > > This is my situation, I

Re: [Neo] Limiting Dijkstra's search algorithm to maximum degrees of depth.

2009-10-14 Thread Nabeel Siddiqui
Thanks Anders However not only is my graph weighted but also I want to traverse only in the outgoing direction so FindSinglePath does not seem to be appropriate. I can ignore the weights for now but the direction is really important. So I need more suggestions. Ideally I would like to somehow ext

Re: [Neo] Graph visualization on the web

2009-10-14 Thread Tobias Ivarsson
On Wed, Oct 14, 2009 at 10:39 AM, Rob Challen wrote: > > A server side rendering to svg using graphviz combined with zgrviewer could > also be good. This is much more flexible for doing different graph layouts > so would work better for visualising whole networks, but all the rendering > would ha

[Neo] Problems using Traverse

2009-10-14 Thread Andrea Puddu
HI, This is my situation, I have a graph with about 7Millions of nodes and 50Millions of arcs. When I try to traverse the graph (that maybe have a unique connected component), I always have java heap space problems. Any suggestion about that? Thank you in advance, Andrea ___

Re: [Neo] Limiting Dijkstra's search algorithm to maximum degrees of depth.

2009-10-14 Thread Anders Nawroth
Hi! If you have an unweighted graph, you could look into using the FindSinglePath class: http://components.neo4j.org/graph-algo/apidocs/org/neo4j/graphalgo/shortestpath/FindSinglePath.html /anders Nabeel Siddiqui wrote: > Hi All > I have a question about the graph algo components of neo4j. Spec

Re: [Neo] User Digest, Vol 31, Issue 10

2009-10-14 Thread Eric LI DESTRI
Hello, I know graphviz, it's possible to output to many formats and graphviz is very well documented. Best regards Eric > Date: Wed, 14 Oct 2009 10:13:24 +0200 > From: Jonas Andersson > Subject: [Neo] Graph visualization on the web > To: Neo user discussions > Message-ID: <232d23e4-5437-48b3-

[Neo] Limiting Dijkstra's search algorithm to maximum degrees of depth.

2009-10-14 Thread Nabeel Siddiqui
Hi All I have a question about the graph algo components of neo4j. Specifically the org.neo4j.graphalgo.shortestpath.Dijkstra algorithm. Can we limit the search for shortest path to a maximum degree of depth? For example: if i have a the maximum degree of depth set to 2 then the following path b

Re: [Neo] Graph visualization on the web

2009-10-14 Thread Olivier Rossel
in java, i use jung or prefuse. but it is swing based. so pretty difficult to port on web apps. On Wed, Oct 14, 2009 at 10:13 AM, Jonas Andersson wrote: > Hello > > I'm wondering if anyone know of a good open source solution for > displaying graph content, preferably on the web? When developing >

Re: [Neo] Graph visualization on the web

2009-10-14 Thread Rob Challen
Treebolic looks like an easy option to implement and the graphical rendering is all client side. It will render graphs as well as trees but needs a focus node, and can be used in an interactive way. http://treebolic.sourceforge.net/ A server side rendering to svg using graphviz combined with zgrv

Re: [Neo] Graph visualization on the web

2009-10-14 Thread Anders Nawroth
Hi Jonas! Others already answered (thanks!), but I'll send this anyhow. > I'm wondering if anyone know of a good open source solution for > displaying graph content, preferably on the web? There should be something among my visualization links: http://delicious.com/andersnawroth/visualization

Re: [Neo] Graph visualization on the web

2009-10-14 Thread Peter Neubauer
Hi there, another project doing nice visuals based on the Flare toolkit is Sasha's PeopleMap, http://github.com/sashaagafonoff/peoplemap/blob/master/MASTER/screenshot_13_October_2009.png /peter GTalk: neubauer.peter Skype peter.neubauer Phone +46 704 106975 LinkedIn http://www.

Re: [Neo] Graph visualization on the web

2009-10-14 Thread Andreas Ronge
Hi Sasha Agafonoff uses the Flash Prefuse Flare library in his Rails peoplemap application for displaying graphs. The neo4j data is converted to GraphML wich can be loaded very easily into Prefuse Flare. Have a look at the result: Screen shot: http://github.com/sashaagafonoff/peoplemap/blob/mast

Re: [Neo] Graph visualization on the web

2009-10-14 Thread DakshinaMurthy Bhamidi
You could use Javascript Infoviz toolkit http://thejit.org/. It accepts data in json format. On Wed, Oct 14, 2009 at 1:51 PM, wrote: > I used an open source Flex based tool called RaViz: > http://code.google.com/p/birdeye/wiki/RaVis > > Its part of the BirdEye Library: http://code.google.com/p/b

Re: [Neo] Graph visualization on the web

2009-10-14 Thread orla . spillane
I used an open source Flex based tool called RaViz: http://code.google.com/p/birdeye/wiki/RaVis Its part of the BirdEye Library: http://code.google.com/p/birdeye/ Its mainly built to accept graph data in XML format but some modifications have been made to allow objects/collections be used as sour

[Neo] Graph visualization on the web

2009-10-14 Thread Jonas Andersson
Hello I'm wondering if anyone know of a good open source solution for displaying graph content, preferably on the web? When developing Neoclipse, did you find any other tools than GEF/Zest that might be usable? Is GEF/Zest only usable from within eclipse? Best regards Jonas Andersson _