Dùng RedisTemplate để gửi byte tới Redis
Theo mặc định, RedisTemplate sẽ chuyển dữ liêu của ta sang dạng String trước khi thực hiện serialize. Trong một số trường hợp, ta có thể tiết kiệm bộ nhớ bằng cách gửi thẳng byte lên Redis.
About technology stuff that piqued my interest
Theo mặc định, RedisTemplate sẽ chuyển dữ liêu của ta sang dạng String trước khi thực hiện serialize. Trong một số trường hợp, ta có thể tiết kiệm bộ nhớ bằng cách gửi thẳng byte lên Redis.
By default, RedisTemplate convert our data to String before sending it to Redis. In some case, sending raw bytes can help us save some memory.
In Redis, there is no concept of sliding expiration. If so, how did StackExchangeRedis implement this feature? Let’s find out here.
Trong Redis không tồn tại khái niệm sliding expiration. Vậy StackExchangeRedis đã implement tính năng đó như thế nào? Cùng tìm hiểu tại đây.
The third article in a series about Redis-based distributed caching. We will see how Redis can help us exchange data between a Python and a C# .NET application.
Bài thứ 3 trong loạt bài về Redis. Chúng ta sẽ tìm hiểu cách dùng Redis làm trung gian để trao đổi dữ liệu giữa ứng dụng Python và C# .NET.
Bài số 2 trong loạt bài về distributed caching dùng Redis. Chúng ta sẽ tìm hiểu StackExchangeRedis, một package cho phép kết nối C# app với Redis.
The second article in a series about Redis-based distributed caching. We will look at StackExchangeRedis, a C# package to interact with Redis.
Đây là bài đầu tiên trong loạt 3 bài về distributed caching dùng Redis. Chúng ta sẽ tìm hiểu về aioredis, một package cho phép kết nối non-blocking tới Redis.
The first article in a series about Redis-based distributed caching. We will take a look at aioredis, a Python library to make non-blocking calls to Redis.