Skip to content

Commit

Permalink
README: update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
yangbodong22011 committed Sep 1, 2022
1 parent b234af5 commit b540f87
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
7 changes: 5 additions & 2 deletions README-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,13 @@ English | [简体中文](./README-CN.md)
- [TairHash](https://help.aliyun.com/document_detail/145970.html), 可实现 field 级别的过期。(已[开源](https://github.com/alibaba/TairHash))
- [TairString](https://help.aliyun.com/document_detail/145902.html), 支持 string 设置 version,增强的`cas``cad`命令可轻松实现分布式锁。(已[开源](https://github.com/alibaba/TairString))
- [TairZset](https://help.aliyun.com/document_detail/292812.html), 支持多维排序。(已[开源](https://github.com/alibaba/TairZset))
- [TairBloom](https://help.aliyun.com/document_detail/145972.html), 支持动态扩容的布隆过滤器。(待开源)
- [TairRoaring](https://help.aliyun.com/document_detail/311433.html), Roaring Bitmap, 使用少量的存储空间来实现海量数据的查询优化。(待开源)
- [TairSearch](https://help.aliyun.com/document_detail/417908.html), 支持ES-LIKE语法的全文索引和搜索模块。(待开源)

## 安装
```
go get github.com/alibaba/tair-go@v1.0.0
go get github.com/alibaba/tair-go
```

## 快速开始
Expand All @@ -22,7 +25,7 @@ go get github.com/alibaba/[email protected]
go.mod
```
require (
github.com/alibaba/tair-go v1.1.0
github.com/alibaba/tair-go v1.1.2
)
```

Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ A client packaged based on [go-redis](https://github.com/go-redis/redis) that op
* [TairString](https://www.alibabacloud.com/help/en/apsaradb-for-redis/latest/tairstring-commands), is a string that contains s version number.([Open sourced](https://github.com/alibaba/TairString))
* [TairHash](https://www.alibabacloud.com/help/en/apsaradb-for-redis/latest/tairhash-commands), is a hash that allows you to specify the expiration time and verison number of a field.([Open sourced](https://github.com/alibaba/TairHash))
* [TairZset](https://www.alibabacloud.com/help/en/apsaradb-for-redis/latest/tairzset-commands), allows you to sort data of the double type based on multiple dimensions. ([Open sourced](https://github.com/alibaba/TairZset))
* [TairBloom](https://www.alibabacloud.com/help/en/apsaradb-for-redis/latest/tairbloom-commands), is a Bloom filter that supports dynamic scaling. (Coming soon)
* [TairRoaring](https://www.alibabacloud.com/help/en/apsaradb-for-redis/latest/tairroaring-commands), is a more efficient and balanced type of compressed bitmaps recognized by the industry. (Coming soon)
* [TairSearch](https://www.alibabacloud.com/help/en/apsaradb-for-redis/latest/tairsearch-command), is a full-text search module developed in-house based on Redis modules. (Coming soon)

## Installation

Expand All @@ -23,7 +26,7 @@ An example of TairString is as follows:
go.mod
```
require (
github.com/alibaba/tair-go v1.1.0
github.com/alibaba/tair-go v1.1.2
)
```

Expand Down

0 comments on commit b540f87

Please sign in to comment.