An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# Database with Replay Logs
![](./asset.png)

``` 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
```