Simple in-memory graph database
make build
./build/spidey-db
Spidey listens on port 6425
Spidey communicates via RESP, so redis-cli will work or you can communicate over TCP
redis-cli -p 6425
- COMMAND
- PING
- SETVERTEX [key] [value]
- DELVERTEX [key]
- GETVERTEX [key]
- SETEDGE [vertex-key] [vertex-key]
- DELEDGE [vertex-key] [vertex-key]
- GETGRAPH
- GETNEIGHBORS [vertex-key] [distance]