How to Safely Store Data on Redis in a Heavy Writing System?

Learn how to safely store data on Redis in a heavy writing system by optimizing write operations, using data persistence mechanisms, and implementing data backup strategies.

July 1, 2024 · 4 min · 708 words · Bá Tới

Interact with data in Redis

In this article, we will explore the key features of Redis, a popular in-memory data store. We will discuss how Redis stores data, the different data structures it supports, and how you can interact with data in Redis using commands and client libraries.

May 12, 2024 · 5 min · 866 words · Bá Tới

RedisGears: A Serverless Engine for Redis

RedisGears is a serverless engine for Redis that allows you to run custom functions on Redis data. In this article, we will explore the features of RedisGears, how it works, and how you can use it to build serverless applications with Redis.

May 12, 2024 · 3 min · 634 words · Bá Tới

Improve Redis Performance in Ruby on Rails

Optimizing Redis performance in Ruby on Rails applications is crucial for enhancing response times and reducing latency. Learn how to improve Redis performance by implementing connection pooling, leveraging the Hiredis client library, and monitoring Redis operations.

May 1, 2024 · 4 min · 690 words · Bá Tới

Redis Performance Optimization Techniques

Redis is a high-performance, in-memory data store that is widely used for caching, session management, and real-time analytics. In this article, we explore some of the most effective techniques for optimizing Redis performance, including data modeling, key design, and configuration tuning.

March 30, 2024 · 4 min · 751 words · Bá Tới

Page caching - Implementing Page Caching in a Rails Application with Redis

Page caching is a vital strategy to enhance the performance and responsiveness of web applications by serving cached HTML pages directly to users. In this blog post, we’ll explore how to implement page caching in a Rails application using Rails middleware and Redis as the caching backend.

August 6, 2021 · 4 min · 829 words · Bá Tới

Using Redis in Rails Applications

Redis is an open-source, in-memory data structure store known for its speed and flexibility. It serves as a high-performance database, cache, and message broker, offering various data structures such as strings, hashes, lists, sets, and sorted sets. In Rails applications, Redis is widely used for caching, session storage, background job processing, real-time analytics, and more. This article provides an introduction to Redis and its applications in Rails, along with a step-by-step installation guide for integrating Redis with a Rails application using the redis-rails gem.

April 7, 2021 · 3 min · 439 words · Bá Tới

Understanding Sidekiq: A Powerful Background Job Processing Solution

In today’s web development landscape, handling background job processing efficiently has become crucial for building robust and scalable applications. Sidekiq stands out as a popular choice among developers due to its simplicity, reliability, and powerful features.

March 2, 2020 · 4 min · 786 words · Bá Tới