Questions tagged [janusgraph]

JanusGraph is a scalable graph database optimized for storing and querying graphs containing hundreds of billions of vertices and edges distributed across a multi-machine cluster. JanusGraph is a transactional database that can support thousands of concurrent users executing complex graph traversals in real time. When posting questions, please include environment details, such as the storage and indexing backends used.

JanusGraph is a scalable graph database optimized for storing and querying graphs containing hundreds of billions of vertices and edges distributed across a multi-machine cluster. JanusGraph is a transactional database that can support thousands of concurrent users executing complex graph traversals in real time.

When posting questions, please include environment details, such as the storage and indexing backends used.


Resources:


Related tags:

857 questions
-4
votes
1 answer

How can I get all the file names under one folder using gremlin?

How can I get all the file names under one file folder? and foreach all the file names? using gremlin command
Jeff
  • 117
  • 10
-5
votes
1 answer

compare the skills of one candidate with other candidates ,schema is provided in the link [1]: https://i.stack.imgur.com/Q35mE.jpg

g.V().has('Candidate','imProfileId','1000363').out('HAS_SKILL').inE('HAS_SKILL').group().by(outV().values('userId')).unfold().project('userId','count').by(select(keys)).by(select(values).count(local)).order().by('count',desc) compare one candidate…
1 2 3
57
58