Open vortex0305 opened 2 years ago
LGTM
LGTM
Repo:https://github.com/tidb-incubator/SHAREdis have created, please accept the pending invitation.
There is one problem left: the name SHAREdis we used has a company identify, we don't know is this a good choice ? And any other names to recommend?Or that it's even not a problem.
You can change the name by yourself, that's ok, you have admin privilege. But we don't think SHAREdis has any problem.
ok thx
Project Incubating Request
Summary
As a caching service, Redis has become the first choice for most companies with its efficient performance, rich data types, and comprehensive interfaces. However, since all data in Redis is in memory, when the amount of data is huge, the cost will be very expensive. Therefore, many companies have developed their own caching services based on open source frameworks such as RocksDB. With the high-efficiency performance of SSD disks and the append log mode of the LSM tree, the service cost is greatly reduced at the cost of a certain loss of read and write efficiency.
Because self-developed kv store often requires large R&D and time costs, TiKV, as an excellent open source KV storage service, has powerful cluster management and data synchronization functions, making it a suitable choice. But firstly, TiKV only supports reading and writing of key-value type data, which greatly limits business application scenarios. Secondly, TiKV uses a unique client protocol. If the business is switched from Redis, the sdk needs to be changed, and the service migration cost is high.
This project hopes to encapsulate and expand the key-value interface of TiKV on top of the advantages of TiKV, and use the Redis client protocol to implement Redis data types and interface operations, while shielding the complex cluster management inside the distributed system and data synchronization operation, thereby providing a distributed SSD cache computing layer service that can replace/supplement Redis.
Motivation
This proposal mainly solves the following problems:
Current Situation
Targets
Architecture diagram
Estimated Time