This is the repository behind a Neo4j meetup talk demonstrating how to incrementally model a real time recommendation engine.
If you’re in London feel free to come along, you can register on meetup.com
The following instructions assume that you’re using Neo4j 2.3.1 so go and download that now if you haven’t already
Once you’ve done that you’ll need to add the following in neo4j.properties
dbms.security.load_csv_file_url_root=data/import
If you’re using the Desktop installer set that to an absolute path rather than a relative one e.g.
dbms.security.load_csv_file_url_root=/Users/markneedham/projects/meetups/modeling-worked-example/data/
After you’ve done that copy the CSV files from the data
folder to that location e.g.
cp data/*.csv neo4j-community-2.3.1/data/import/
The Cypher LOAD CSV
scripts are in the cypher
folder of the repository.
You can execute them individually or use the import.sh
script.
./import.sh
Now you’re all set to follow along with the session.
The following are the queries that we will write during the session: