Exchange data between a Python and a C# .NET app via Redis
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.
About technology stuff that piqued my interest
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.
Redis is a popular choice when we need a distributed cache. Find out how to integrate Redis with Python and C# .NET in this three-part series.
Redis là lựa chọn phổ biến cho tính năng distributed caching. Trong loạt 3 bài viết này, chúng ta sẽ tìm hiểu cách tích hợp Redis với ứng dụng C# và Python.
String là kiểu dữ liệu cơ bản trong C# và thường xuyên được ta sử dụng. Tuy nhiên một số tính năng của nó, ví dụ như string interning, có thể làm ta bất ngờ.
String is a fundamental type in C#, and most of us use it all the times. But some of its features, like string interning for example, can trip us up.