From e6f1b40bf7bd6ca9e9256348ff68833c63a5b5ca Mon Sep 17 00:00:00 2001 From: "bodong.ybd" Date: Thu, 22 Sep 2022 15:57:20 +0800 Subject: [PATCH] Release v1.1.3 --- README-CN.md | 6 +++++- README.md | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/README-CN.md b/README-CN.md index 4c62ebf..dab496a 100644 --- a/README-CN.md +++ b/README-CN.md @@ -13,6 +13,10 @@ English | [简体中文](./README-CN.md) - [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语法的全文索引和搜索模块。(待开源) +- [TairDoc](https://help.aliyun.com/document_detail/145940.html), 支持存储`JSON`类型。(待开源) +- [TairGis](https://help.aliyun.com/document_detail/145971.html), 支持地理位置点、线、面的相交、包含等关系判断。(待开源) +- [TairTs](https://help.aliyun.com/document_detail/408954.html), 时序数据结构,提供低时延、高并发的内存读写访问。(待开源) +- [TairCpc](https://help.aliyun.com/document_detail/410587.html), 基于CPC(Compressed Probability Counting)压缩算法开发的数据结构,支持仅占用很小的内存空间对采样数据进行高性能计算。(待开源) ## 安装 ``` @@ -25,7 +29,7 @@ go get github.com/alibaba/tair-go go.mod ``` require ( - github.com/alibaba/tair-go v1.1.2 + github.com/alibaba/tair-go v1.1.3 ) ``` diff --git a/README.md b/README.md index 628165e..30a9fc5 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,10 @@ A client packaged based on [go-redis](https://github.com/go-redis/redis) that op * [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) +* [TairDoc](https://www.alibabacloud.com/help/en/apsaradb-for-redis/latest/tairdoc-commands), to perform create, read, update, and delete (CRUD) operations on JSON data. (Coming soon) +* [TairGis](https://www.alibabacloud.com/help/en/apsaradb-for-redis/latest/tairgis-commands), allowing you to query points, linestrings, and polygons. (Coming soon) +* [TairTs](https://www.alibabacloud.com/help/en/apsaradb-for-redis/latest/tairts-commands), is a time series data structure that is developed on top of Redis modules. (Coming soon) +* [TairCpc](https://www.alibabacloud.com/help/en/apsaradb-for-redis/latest/taircpc-commands), is a data structure developed based on the compressed probability counting (CPC) sketch. (Coming soon) ## Installation @@ -26,7 +30,7 @@ An example of TairString is as follows: go.mod ``` require ( - github.com/alibaba/tair-go v1.1.2 + github.com/alibaba/tair-go v1.1.3 ) ```