mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-05-05 17:56:50 +08:00
24 lines
679 B
Go
24 lines
679 B
Go
package rpccache
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"github.com/OpenIMSDK/tools/log"
|
|
"github.com/redis/go-redis/v9"
|
|
)
|
|
|
|
func subscriberRedisDeleteCache(ctx context.Context, client redis.UniversalClient, channel string, del func(ctx context.Context, key ...string)) {
|
|
for message := range client.Subscribe(ctx, channel).Channel() {
|
|
log.ZDebug(ctx, "subscriberRedisDeleteCache", "channel", channel, "payload", message.Payload)
|
|
var keys []string
|
|
if err := json.Unmarshal([]byte(message.Payload), &keys); err != nil {
|
|
log.ZError(ctx, "subscriberRedisDeleteCache json.Unmarshal error", err)
|
|
continue
|
|
}
|
|
if len(keys) == 0 {
|
|
continue
|
|
}
|
|
del(ctx, keys...)
|
|
}
|
|
}
|