[Neo4j] Online Backup : wich package?

2010-06-08 Thread BatiG
Hi, I want to use the tool Online backup. I've read the topic about backup on the website of Neo4j. The topic tell us that we have to use the class Neo4jBackup. However, I don't know where I can find the package containing this class. I've tried with : - online-backup-0.4-20100113.100552-1.jar

Re: [Neo4j] [Neo] A new and improved Traversal framework

2010-06-08 Thread Georg M. Sorst
Hi Tobias and everyone, finally found some time to catch up on my traversal and the RelationshipExpander looks simple and suitable enough. However, which relationships to return depends on the path traversed so far and in the RelationshipExpander I only have access to the current node unless I

Re: [Neo4j] Node creation limit

2010-06-08 Thread Johan Svensson
I just added code in trunk so block size for string and array store can be configured when the store is created. This will be available in the 1.1 release but if you want to try it out now use 1.1-SNAPSHOT and create a new store like this: MapString,String config = new HashMapString, String();

Re: [Neo4j] Online Backup : wich package?

2010-06-08 Thread Anders Nawroth
Hi Bati! You need to download the jar file found here: http://m2.neo4j.org/org/neo4j/neo4j-online-backup/0.5/ http://m2.neo4j.org/org/neo4j/neo4j-online-backup/0.5/neo4j-online-backup-0.5.jar Will update the link on the wiki in a moment! /anders On 06/08/2010 10:11 AM, BatiG wrote: Hi, I

Re: [Neo4j] Installation of Neo4j Standalone REST server 0.8(urgent)

2010-06-08 Thread Peter Neubauer
Mayan, on Windows, you need administrator privileges to install a service. So, on Vista, you need to log on as an administrator. From the Start menu browse toCommand Prompt, right click and Run as administrator. Then try the installation step again and please report the result! I updated the text

Re: [Neo4j] Neo4j spatial within distance query

2010-06-08 Thread Paddy
Thanks I got it working using Davide's example. I can find all bus stops within 1km radius of a coordinate. For example, User form input: Start - longitude= 53.352788, latitude= -6.264396 End - longitude=53.352788, latitude=-6.264396 1 - To generate a list containing bus stops within 1km of

Re: [Neo4j] Node creation limit

2010-06-08 Thread rick . bullotta
Hi, Johan. In the scenario you describe below, if one attempts to open an existing Neo DB that has been created with a non-standard block size, will it be able to get that information from the DB itself or must you provide that information when you attempt via config parameters

Re: [Neo4j] Node creation limit

2010-06-08 Thread Mattias Persson
2010/6/8 rick.bullo...@burningskysoftware.com:   Hi, Johan.   In the scenario you describe below, if one attempts to open an   existing Neo DB that has been created with a non-standard block size,   will it be able to get that information from the DB itself or must you   provide that

Re: [Neo4j] Online Backup : wich package?

2010-06-08 Thread BatiG
Thanks for the package. But I still have a problem and I assume that is from your package. With this code : EmbeddedGraphDatabase neo = GraphJo4neo.getGraphDatabaseService(); EmbeddedGraphDatabase backupGraphDb = new EmbeddedGraphDatabase( CONSTANTS.DEV_GRAPH_BACKUP_PATH );

Re: [Neo4j] Online Backup : wich package?

2010-06-08 Thread Anders Nawroth
Hi! What version are you using of the neo4j kernel? neo4j-kernel-1.0 should be used with neo4j-onlinebackup-0.5 and neo4j-kernel-1.1-SNAPSHOT should be used with neo4j-onlinebackup-0.6-SNAPSHOT /anders On 06/08/2010 02:45 PM, BatiG wrote: Thanks for the package. But I still have a

Re: [Neo4j] Online Backup : wich package?

2010-06-08 Thread BatiG
I've tried with : - neo4j-kernel-1.0-rc.jar - neo4j-kernel-1.0.jar And I've the same error in the both cases. -- View this message in context: http://neo4j-user-list.438527.n3.nabble.com/Online-Backup-wich-package-tp878706p879410.html Sent from the Neo4J User List mailing list archive at

Re: [Neo4j] Installation of Neo4j Standalone REST server 0.8(urgent)

2010-06-08 Thread Mayank Grover
hey peter.. thnx for the help,it worked regards mayank On Tue, Jun 8, 2010 at 3:14 PM, Peter Neubauer peter.neuba...@neotechnology.com wrote: Mayan, on Windows, you need administrator privileges to install a service. So, on Vista, you need to log on as an administrator. From the Start menu

[Neo4j] how to include neo4j package in java application

2010-06-08 Thread Mayank Grover
hi users, im trying to wrk on an example which uses neo4j embedded database in java application..It gives an error (PACKAGE DOESNT EXIST) in all the import statements n the package statement... I want to knw where shld i place the neo4j-apoc-1.0 folder so dat i can use it in the java application..

Re: [Neo4j] Node creation limit

2010-06-08 Thread Biren Gandhi
Thanks. Regarding scaling 1.0 and 1.1 releases have a limit of 4 billion records / store file so if you need to store 4 billion strings you have to make sure every string fits in a single block. This limit will be increased to 32 billion or more in the 1.2 release. Any timeline guidance on

[Neo4j] bus timetable with neo4j

2010-06-08 Thread Paddy
I have nodes representing bus stops, and relations representing bus connections with cost values representing minutes it takes for the bus to reach each stop. I'm currently using the A Star algorithm to find the quickest route for the bus routes. what is the best way to integrate the timetable