https://github.com/eitansuez/gemfire_cq_demo
gemfire continuous query demo
https://github.com/eitansuez/gemfire_cq_demo
Last synced: about 1 year ago
JSON representation
gemfire continuous query demo
- Host: GitHub
- URL: https://github.com/eitansuez/gemfire_cq_demo
- Owner: eitansuez
- Created: 2017-01-06T15:00:36.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-10-05T04:32:07.000Z (almost 9 years ago)
- Last Synced: 2025-02-26T01:27:12.212Z (over 1 year ago)
- Language: Groovy
- Size: 15.6 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.adoc
Awesome Lists containing this project
README
A simple demonstration of the use of continuous queries in gemfire to notify a client of updates to stock prices for stocks that a user is interested in. The stocks list is made up and so are the prices (i.e. not using a web service or anything).
. `cluster` contains a simple start script and configuration to start a locator and two servers locally:
+
----
cd cluster
./start.sh
----
. start the `Chart` app
+
----
gradle chartClient
----
. start the `FeedSimulator`
+
----
gradle feedSimulator
----
See the chart render prices for stocks as updates are made to prices in the region on the server.