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..
How to use Redisson with kotlin
How to use Redisson with kotlin
2022.10.02Redisson은 Jedis, Lettuce 와 같은 자바진영의 레디스 클라이언트입니다. Lettuce와 비슷하게 Netty 를 사용하며 non-blocking I/O 를 사용합니다. Redisson 의 특이한 점은 직접 레디스의 명령어를 제공하지 않고 , Bucket 이나 Map 과 같은 자료구조나 Lock 같은 특정한 구현체의 형태로 제공한다는 점입니다. https://github.com/redisson/redisson GitHub - redisson/redisson: Redisson - Redis Java client with features of In-Memory Data Grid. Over 50 Redis based Java objects Redisson - Redis Java client wi..