Gemfire peer to peer distributed cache example - There is a screen recording of the demo below, if you want to get a quick understanding of this project.
This repository contains a demo of how to use Gemfire as a peer-to-peer distributed cache. It is typically used in usecases where you want the cache to scale out with the number of application instances. The peer-to-peer distributed cache lives within the memory allocated to the application - so logically - the more app instances you have bigger the cache.
The app uses Spring Data Gemfire to interact with the Gemfire caches. The app fakes the backing datasource by creating an in-memory map on startup. The Gemfire cache's use a multicast address to discover each other. Please note that this is NOT a recommended way to deploy this project - It is recommended to use a Locator instead and all the peers connect and learn about each other via the Locator http://gemfire.docs.pivotal.io/docs-gemfire/configuring/running/running_the_locator.html.
It might not even work in the network you are on because of how multicast'ing is configured on your network. So using Locator's is the right way to do it.
Once you have started both the app instances, click on these links:
app-1 http://localhost:8080/hit_or_miss.html
app-2 http://localhost:9090/hit_or_miss.html
And when you lookup a key from the dropdown the API makes a call to the cache via Spring Data Gemfire. If the value (for the key) is in the cache, it is returned from the cache. If not in the cache, it will go ahead and retrieve it from the backend datasource and put's (put) it in the cache.
Next time, the same key is looked up via any app instance it does not hit the backing data source and is fetched from the distributed cache.
git clone https://github.com/amithn/gemfire-peer-to-peer-cache-example.git
./gradlew bootRepackage; java -Dserver.port=8888 -jar build/libs/gemfire-peer-to-peer-cache-example-0.1.0.jar
./gradlew bootRepackage; java -Dserver.port=9090 -jar build/libs/gemfire-peer-to-peer-cache-example-0.1.0.jar
-- Start looking up the keys from the dropdown from each of the app instances see the cache hits and misses in action.