Simple project to demonstrate the use of MapStore of Hazelcast. MapLoader provides 2-way communication with the datasource to both update and retrieve data.
-
Install mongo
brew install mongodb -
Create dir data/db in root folder(/) where mongodb stores its data
mkdir datacd data
mkdir db -
Give permission for mongo to write to the folder
sudo chmod -R go+w /data/db -
Compile code
mvn clean package
-
Run the mongoDb
mongod -
Open the mongoDb command line
mongo --host 127.0.0.1:27017 -
Run the Runner