Best of RedisNovember 2024

  1. 1
    Article
    Avatar of controversycontroversy.dev·1y

    Redis Inc seeks control over future of Rust redis-rs client library, amid talk of trademark concerns

    Redis Inc aims to take control of the Redis client library for Rust, known as redis-rs, amidst ongoing discussions about potential trademark issues. The move raises questions about the future development and support for the library within the open-source community.

  2. 2
    Video
    Avatar of communityCommunity Picks·2y

    Redis vs Memcached Performance Benchmark

    The post benchmarks the performance of Redis and Memcached, focusing on latency, throughput, and resource usage. Tests were conducted using AWS infrastructure to measure how each cache handles set and get operations, as well as their scalability. Redis showed higher latency under load but offers more features, while Memcached demonstrated more stable performance and easier management. The results suggested choosing Memcached for simple SQL query caching and Redis for feature-rich requirements, despite its complex maintenance needs.

  3. 3
    Article
    Avatar of redislabsRedis·2y

    JSON and search support in Go

    The go-redis client library now supports advanced data modeling features including secondary indexing, JSON documents, and enhanced search capabilities. These additions bring the library closer to the full capabilities of Redis Community Edition, Redis Software, and Redis Cloud. Users can explore advanced examples like JSON document creation, selective reading and writing, as well as sophisticated search functions including vector search for AI applications.

  4. 4
    Article
    Avatar of infoqInfoQ·1y

    Reactive Real-Time Notifications with SSE, Spring Boot, and Redis Pub/Sub

    The post explains how to efficiently implement a real-time notification system using Server-Sent Events (SSE), Spring Boot with WebFlux, and Redis Pub/Sub. It delves into the benefits of a reactive approach for scalability and resource utilization, and provides code examples for setting up SSE connections, handling automatic re-connections, and managing errors. Additionally, it includes a configuration to use Redis as a message broker and highlights security considerations for client-server communications.