https://github.com/fjctp/cluster-db
In memory database for EMQ cluster
https://github.com/fjctp/cluster-db
Last synced: about 2 months ago
JSON representation
In memory database for EMQ cluster
- Host: GitHub
- URL: https://github.com/fjctp/cluster-db
- Owner: fjctp
- License: mit
- Created: 2017-04-04T05:53:54.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-04T06:17:22.000Z (about 8 years ago)
- Last Synced: 2025-02-01T23:44:44.552Z (4 months ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cluster-db
In memory database for EMQ cluster# Start
``` bash
npm install
node server.js
```
server listens to 0.0.0.0:5000# REST APIs
| Method | Path | Parameters | Action |
|---|---|---|---|
| GET | /master | None | Get master node name |
| GET | /nodes | None | Get cluster nodes name |
| POST | /nodes/:name | name | Add [name] to the database |
| DELETE | /nodes/:name | name | Remove [name] from the database |