Skip to content

Instantly share code, notes, and snippets.

@jkimbo
Last active August 29, 2015 14:22
Show Gist options
  • Save jkimbo/4961fe90779c1408e5b2 to your computer and use it in GitHub Desktop.
Save jkimbo/4961fe90779c1408e5b2 to your computer and use it in GitHub Desktop.
neo4j ramdisk
  • Create a ramdisk using make_neo4j_ramdisk
  • Clone https://github.com/nigelsmall/neoram
  • Repoint symlink in neoram to /Volumes/neo4jramdisk/neoram
  • Run ./neoram download to download neo4j
  • Open ./opt/neo4j/conf/neo4j-server.properties and change org.neo4j.server.webserver.port=7474 to something that won't conflict
  • Install the load2neo plugin
    • Download the plugin and move the .jar files to ./opt/neo4j/plugins
    • Add org.neo4j.server.thirdparty_jaxrs_classes=com.nigelsmall.load2neo=/load2neo to ./opt/neo4j/conf/neo4j-server.properties
  • Run ./neoram start
#!/bin/bash
if [ ! -d /Volumes/neo4jramdisk ]; then
SIZE=$(echo "256 * 2048" |bc) # 256Mb
sudo diskutil erasevolume HFS+ "neo4jramdisk" `hdiutil attach -nomount ram://$SIZE`
mkdir -p /Volumes/neo4jramdisk/neoram
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment