https://github.com/mrinalxdev/go-replay
Simulating MySQL's replay system in a small instance
https://github.com/mrinalxdev/go-replay
Last synced: 11 months ago
JSON representation
Simulating MySQL's replay system in a small instance
- Host: GitHub
- URL: https://github.com/mrinalxdev/go-replay
- Owner: mrinalxdev
- Created: 2025-03-22T04:10:31.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-22T13:15:13.000Z (about 1 year ago)
- Last Synced: 2025-03-22T13:22:55.443Z (about 1 year ago)
- Language: Go
- Size: 250 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Database with Replay Logs

``` bash
> set name Alice
OK
> set age 25
OK
> delete name
OK
> list
age: 25
> log
Log entries:
SET name Alice
SET age 25
DELETE name
> exit
```