[Neo4j] Re: install neo4j

2015-10-10 Thread varun kumar
Try exporting JAVA_HOME. Thanks On Saturday, October 10, 2015 at 6:35:18 AM UTC-7, Ankit Katiyar wrote: > > Hello > > I have install neo4j in dedicated server in hosting linux , I face this > problem (Cannot execute user/local/jdk/bin/java) But i have alerdy > install. please help me. But error

[Neo4j] Neo4j OGM returning No Host exception

2015-10-10 Thread varun kumar
I am running neo4j-community-2.2.5 locally on my macbook. I am trying to connect to the code using the neo4j-ogm version : 1.1.2 Here is the session factory public class Neo4jSessionFactory { private final static SessionFactory sessionFactory = new SessionFactory("com.readypulse.rpinflue

Re: [Neo4j] Re: Unique constraint not getting respected

2015-10-05 Thread varun kumar
ould make > available code to reproduce this it would be most helpful. > > > On Sunday, October 4, 2015 at 7:17:06 AM UTC+2, varun kumar wrote: >> >> I have created a neo4j DB locally and assigned some indices and unique >> constraint. >> >> Here is the :schema

[Neo4j] Unique constraint not getting respected

2015-10-03 Thread varun kumar
I have created a neo4j DB locally and assigned some indices and unique constraint. Here is the :schema Indexes ON :Actor(social_id) ONLINE (for uniqueness constraint) ON :Category(name) ONLINE (for uniqueness constraint) Constraints ON (actor:Actor) ASSERT actor.social_id IS UNIQUE