- 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 changeorg.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
- Download the plugin and move the
- Run
./neoram start
Last active
August 29, 2015 14:22
-
-
Save jkimbo/4961fe90779c1408e5b2 to your computer and use it in GitHub Desktop.
neo4j ramdisk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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