hi . i am using Neo4j 2.0.3 version.
i am working on a DB where we need to track user path based on some fixed location.
like which location is most visited.
so what i am doing :
1. Each user has unique node.
2. Each location has unique node.
when user traverse a location then which is better option :
1. create a relation b/w location node and user node . relation name is : username_time : so when ever a user traverse a location a new relation is created.
or
2. create a node new node which has user info and location info and time. so when ever a user traverse a location a new node is created.
any better idea... Any suggestion would be highly appreciated.