James Thornton

Results 53 comments of James Thornton

For Bulbs 0.4 I will add option to disable index check.

My only experience with OrientDB is through the context of Rexster. If someone wants to contribute a `bulbs.orientdb` adapter, that would be cool. The `bulbs.neo4jserver` adapter supports its native Cypher...

Right now they're blocking (HTTP REST to Neo4j Server, Rexster, or Titan Server); however, Rexster and Titan Server are moving to websockets in TinkerPop 3, which is scheduled for its...

The cleanest, most future-proof way may be to use Gremlin constructs such as... ``` groovy g.V(name,value).has('element_type','person') g.V('element_type','person').has(name,value) ```

there is also `g.V(name,value).group()` which is new, and I think it's close to compound keys;

Bulbs 0.3.29 is the current version. See https://github.com/espeed/bulbs/blob/master/setup.py#L67 It's only in PyPi that you see the datestamp suffix.

I'm on vacation, but go for it if you want. My other thought is to put the node type constraints on the relationship model. On Jan 1, 2013 8:41 AM,...

see https://github.com/espeed/bulbs/issues/74#issuecomment-18270205

Some DBs such as Neo4j don't allow properties to be dictionaries (only primitive arrays). In this case you can use the Bulbs Document type instead of Dictionary -- the Document...