zhangyongding

Results 22 comments of zhangyongding

It is recommended to remove the MigrateToV2 function from the raft-boltdb package, so that there is no dependency on github.com/boltdb/bolt https://github.com/rqlite/raft-boltdb/blob/master/v2/bolt_store.go#L280

Start tow rqlite node: ``` rqlited -node-id 1 -http-addr localhost:4441 -raft-addr localhost:4442 ./node.1 rqlited -node-id 2 -http-addr localhost:4443 -raft-addr localhost:4444 -join http://localhost:4441 ./node.2 ``` Create table foo: ``` curl -XPOST...

I want to use level none to get the full data of the local node when the cluster is abnormal

The first time the client gets the latest index number from index 0, the client is not concerned about previous raft log changes. The client then continuously monitors index changes...

If the client crashes, when the client restarts, it only needs to obtain the latest data from the database. This scenario is suitable for the client not to persist the...

You can consider the watch scheme of etcd, which is better

> https://github.com/iancoleman/orderedmap