Redis
Estimating the number of elements in a set (w. hyperloglog)
Estimating the number of elements in a set (w. hyperloglog)
2022.10.08What is Hyperloglog? Hyperloglog 란 ? https://d2.naver.com/helloworld/711301 Finding approximate number in redis using hyperloglog Redis 에서 Hyperloglog 를 사용하여 count 에 대한 근사치 구하기 방문자 수를 카운팅 하는 예제 import com.jongyun.redission.config.BaseTest import java.util.stream.LongStream import kotlin.streams.toList import org.junit.jupiter.api.Test import org.redisson.client.codec.LongCodec import reactor.cor..