Redis删除大Key

栏目: 数据库 · 发布时间: 6年前

内容简介:这里说的大key是指包含很多元素的set,sorted set,list和hash。删除操作,我们一般想到有2种,

原文链接:https://www.dubby.cn/detail.html?id=9112

这里说的大key是指包含很多元素的set,sorted set,list和hash。

删除操作,我们一般想到有2种, delexpire

DEL

Time complexity: O(N)where N is the number of keys that will be removed. When a key to remove holds a value other than a string, the individual complexity for this key is O(M) where M is the number of elements in the list, set, sorted set or hash. Removing a single key that holds a string value is O(1).

如果要删除的key是一个集合,包含了很多元素,那么 DEL 时的耗时和元素个数成正比,所以如果直接 DEL ,会很慢。

EXPIRE

Note that calling EXPIRE/PEXPIRE with a non-positive timeout or EXPIREAT/PEXPIREAT with a time in the past will result in the key being deleted rather than expired (accordingly, the emitted key event will be del, not expired).

想着expire会不会可以不是直接删除,可惜官网的描述让我心灰意冷,如果expire后指定的timeout不是正数,也就是<=0,那其实就是 DEL

一点一点删

我们知道 Redis 的工作线程是单线程的,如果一个command堵塞了,那所有请求都会超时,这时候,一些骚操作也许可以帮助你。

其实如果想删除key,可以分解成2个目的,1:不想让其他人访问到这个key,2:释放空间。

那其实我们可以分解成两步,先用 RENAME 把原先的key rename成另一个key,比如:

RENAME userInfo:123 "deleteKey:userInfo:123"

然后可以慢慢去删"deleteKey:userInfo:123",如果是set,那么可以用 SREM 慢慢删,最后再用 DEL 彻底删掉。

这里可以搞个task去 SCAN deleteKey:* ,然后慢慢删除。

UNLINK

Redis 4.0.0提供了一个更加方便的命令

Available since 4.0.0.

Time complexity: O(1)for each key removed regardless of its size. Then the command does O(N) work in a different thread in order to reclaim memory, where N is the number of allocations the deleted objects where composed of.

UNLINK 其实是直接返回,然后在后台线程慢慢删除。

如果你的Redis版本>=4.0.0,那么强烈建议使用 UNLINK 来删除。

删除耗时测试结果

单位:微秒

|Set个数|DEL|EXPIRE|UNLINK| |--|--|--|--| |1|90|97|75| |10|79|67|100| |100|51|49|47| |1000|303|296|49| |10000|2773|2592|52| |100000|31210|33157|51| |1000000|549388|501536|62|

package main

import (
	"github.com/go-redis/redis"
	"fmt"
	"time"
)

func main() {
	client := redis.NewClient(&redis.Options{
		Addr:         "localhost:6379",
		Password:     "",
		DB:           0,
		ReadTimeout:  1000 * 1000 * 1000 * 60 * 60 * 24,
		WriteTimeout: 1000 * 1000 * 1000 * 60 * 60 * 24,
	})

	maxLength := int64(10000 * 100)

	for n := int64(1); n <= maxLength; n *= 10 {
		fmt.Println("Set个数", n)
		TestDelBigSet(client, n)
		TestExpireBigSet(client, n)
		TestUnlinkBigSet(client, n)
		fmt.Println()
	}
}

func TestDelBigSet(client *redis.Client, count int64) {
	redisKey := fmt.Sprintf("%s%d", "del:", time.Now().Nanosecond())

	for n := int64(0); n < count; n++ {
		err := client.SAdd(redisKey, fmt.Sprintf("%d", n)).Err()
		if err != nil {
			panic(err)
		}
	}

	startTime := CurrentTimestampInMicroSecond()
	client.Del(redisKey)
	endTime := CurrentTimestampInMicroSecond()

	fmt.Println("Del", endTime-startTime)
}

func TestUnlinkBigSet(client *redis.Client, count int64) {
	redisKey := fmt.Sprintf("%s%d", "unlink:", time.Now().Nanosecond())

	for n := int64(0); n < count; n++ {
		err := client.SAdd(redisKey, fmt.Sprintf("%d", n)).Err()
		if err != nil {
			panic(err)
		}
	}
	startTime := CurrentTimestampInMicroSecond()
	client.Unlink(redisKey)
	endTime := CurrentTimestampInMicroSecond()

	fmt.Println("Unlink", endTime-startTime)
}

func TestExpireBigSet(client *redis.Client, count int64) {
	redisKey := fmt.Sprintf("%s%d", "expire:", time.Now().Nanosecond())

	for n := int64(0); n < count; n++ {
		err := client.SAdd(redisKey, fmt.Sprintf("%d", n)).Err()
		if err != nil {
			panic(err)
		}
	}
	startTime := CurrentTimestampInMicroSecond()
	client.Expire(redisKey, 0)
	endTime := CurrentTimestampInMicroSecond()

	fmt.Println("Expire", endTime-startTime)
}

func CurrentTimestampInMicroSecond() int64 {
	return time.Now().UnixNano() / 1000
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

海星模式

海星模式

奥瑞·布莱福曼、罗德·贝克斯特朗 / 李江波 / 中信出版社 / 2008-1 / 36.00元

如果砍掉一只蜘蛛的脑袋,毫无疑问它会死掉;但是砍掉海星的一条手臂,它却会长出一只新的来,就连那只砍掉的手臂也会长成一个完整的新海星。传统意义上自上而下的组织模式就像蜘蛛,然而现在正在改变着企业和世界面貌的却是海星型组织。 维基百科、craigslist和Skype的成功下面隐藏着什么样的力量?易趣公司和通用电气公司与废奴和女权运动又有什么共同之处?到底是什么样的重大选择使得通用汽车公司与丰田......一起来看看 《海星模式》 这本书的介绍吧!

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具

HSV CMYK 转换工具
HSV CMYK 转换工具

HSV CMYK互换工具