tison

Results 964 comments of tison

Closed as stale. You can ask questions at the [Discussions forum](https://github.com/apache/incubator-kvrocks/discussions/categories/q-a).

I don't think this is a big deal. Always we focus on the latest version and it's fine if only the nightly version passes CI. If you want to debugging...

@PragmaTwice since we require every PR should be up-to-date before merge, actually we can skip running CI in `unstable` branch. See also [Apache Pulsar's CI settings](https://github.com/apache/pulsar/blob/6c715e08c67c40221c8c08cbe0b31d3a6aa1bf32/.github/workflows/pulsar-ci.yaml): ```yaml on: pull_request: branches:...

@PragmaTwice it sounds like something similar to "MergeCI" in TiDB project. However, I'd prefer running tests as early as possible instead of running less tests and fix bugs later.

Closed as stale. Codebase evolves a lot since the last activities on this patch. There're a few of conflicts. @caipengbo you're welcome to propose the changes again based on the...

Closed as stale. I suppose you run [`redis-benchmark`](https://redis.io/docs/reference/optimization/benchmarks/) against these systems. Looking forward to any feedback.

Closed as inactive. We don't hold a wishing list. A proposal with design is welcome. Also, IIRC crdb drops the dependency to RocksDB and develops their own storage engine Pebble...

@ShooterIT Another concern is that on Kvrocks, `SCAN` return the cursor "_hello" but actually if you want to iterate on next element, it requires a number based cursor. For example:...

Sorry. I get it wrong. ``` 127.0.0.1:6666> SCAN 1 MATCH h* COUNT 1 1) "_hi there" 2) 1) "hi there" 127.0.0.1:6666> SCAN 0 MATCH h* COUNT 1 1) "_hello" 2)...

> After Tomcat is started,i used Redisson 3.17.3 to get kvrocks data This is quite vague. I suppose you start a Kvrocks server or cluster in someway. It would be...