Re: [Neo4j] getting a full log from neo4j-shell

2015-06-19 Thread Mark Jensen
neo4j-shell | tee file.log ? > or ??? > > > On Fri, Jun 19, 2015 at 7:18 PM, Mark Jensen > wrote: > >> All - >> Is there a property I can set, or a java option I can add that would give >> me a full diagnostic log for neo4j-shell? Sorry if this is an easy Java

[Neo4j] getting a full log from neo4j-shell

2015-06-19 Thread Mark Jensen
All - Is there a property I can set, or a java option I can add that would give me a full diagnostic log for neo4j-shell? Sorry if this is an easy Java question- thanks Mark -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this gr

Re: [Neo4j] Re: REST::Neo4p -- Creating unique nodes. (Perl)

2015-03-21 Thread Mark Jensen
create_unique() also should add the entry to the index automatically if it created a new node. I wonder if your add_entries line 382 could be executing more often than you want- just a thought On Thursday, March 19, 2015 at 4:38:39 PM UTC-4, Mark Jensen wrote: > > The blog is very old, it

Re: [Neo4j] Re: REST::Neo4p -- Creating unique nodes. (Perl)

2015-03-19 Thread Mark Jensen
-- Bioinformatics > Michigan Geomicrobiology Lab > Dept. of Earth & Environmental Sciences, > University of Michigan, > Ann Arbor, MI, USA. > email: sun...@umich.edu > web: www.sunitjain.com > meet: www.sunitjain.com/contact > > On Wed, Mar 18, 2015 at 10:10 PM, Mark

[Neo4j] Re: REST::Neo4p -- Creating unique nodes. (Perl)

2015-03-18 Thread Mark Jensen
Thanks Sunit -- I'll think your problem is the difference highlighted in the code below. You're looking for the species with the key 'name', but adding to the index with key 'id'. You may find the $idx->create_unique() method helpful

[Neo4j] On docs pages: "OpenID 2.0 for Google Accounts is going away"

2014-11-19 Thread Mark Jensen
I got the message below when commenting on the docs. Something for Neo4j devs to consider. MAJ OpenID 2.0 for Google Accounts is going away Some applications and websites use OpenID 2.0 for authentication when you're signing in, and to access data that you've given them permission to access.

[Neo4j] True streaming enabled in latest Perl driver - REST::Neo4p v0.3003

2014-07-17 Thread Mark Jensen
All, For Perlers using Neo4j, I want to announce that REST::Neo4p now (should) supports true object streaming from Neo4j REST JSON responses. In particular, rows returned from queries via $row = $query->fetch() should be retrieved as they come in from

Re: [Neo4j] Missing data MATCH vs START

2014-01-01 Thread Mark Jensen
default, and ../transaction within a txn marked as above) On Wed, Jan 1, 2014 at 7:40 PM, Mark Jensen wrote: > Ice-9, you can use the transaction support in the latest Neo4p (>0.2220) : > REST::Neo4p->begin_work; > ...queries and stuff > if ($something_bad_happened) { > > REST::Neo4p-

Re: [Neo4j] Missing data MATCH vs START

2014-01-01 Thread Mark Jensen
Ice-9, you can use the transaction support in the latest Neo4p (>0.2220) : REST::Neo4p->begin_work; ...queries and stuff if ($something_bad_happened) { REST::Neo4p->commit; (The ../cypher endpoint is used by default, and ../transaction within a txn marked as above) On Wed, Jan 1, 2014 at 6:56