Popular blog tags
RSS

Blog posts tagged with 'Redis'

How to Install or Uninstall Redis on Ubuntu 18.04
How to Install or Uninstall Redis on Ubuntu 18.04
StackExchange.Redis 官方操作手册中文翻译版(收录)
Redis Command Reference 和 Redis Documentation 的中文翻译版
full HTML cache for ASP.NET Core 1.0 using REDIS

http://zablo.net/blog/post/asp-net-core-redis-html-cache Previous versions of ASP.NET MVC framework had out-of-the-bo

Redis key design for real-time stock application
I am trying to build a real-time stock application. Every seconds I can get some data from web service like be
Redis优化性能实践(3):选择高效的 数据序列化方法 serialize, msgpack, json, hprose 性能比较
最近弄 Redis ,涉及数据序列化存储的问题,对比了:JSON, Serialize, Msgpack, Hprose 四种方式 1. 对序列化后的字符串长度对比:测试代码: $arr = [0, 1, 2, 'a', 'b', 'c
Redis有四种序列化方式
Serialization To offer the opportunity to store a class into Redis, that class must be serializable; right now there ar
StackExchange.Redis-发布订阅(pub/sub)
Redis 发布订阅 (pub/sub) 是一种消息通信模式,可以用于消息的传输,Redis 的发布订阅机制包括三个部分,发布者,订阅者和 Channel。适宜做在线聊天、消息推送等。
StackExchange.Redis-How to add Generic List to Redis?

For example, if I have a model called Customer

public class Customer
    {

                    
Redis 优化性能实践(1):使用两级Hash优化内存
应用背景 有一个应用需要上传一组ID到服务器来查询这些ID所对应的数据,数据库中存储的数据量是7千万,每次上传的ID数量一般都是几百至上千数量级别。 以前的解决方案 数据存储在Oracle中,为ID建立了索引;查询时,先将这些上传的I
Redis优化性能实践(6):使用管道(PipeLine)-批量(Batch)操作大量数据大幅性能提升
redis大幅性能提升之使用管道(PipeLine)和批量(Batch)操作   Redis中的管道(PipeLine)特性:简述一下就是,Redis如何从客户端一次发送多个命令,服务端到客户端如何一次性响应多个命令。 Re