首页
归档
日志
相册
友链
1
使用 docker 搭建 gitlab
2
git出现文件夹后面跟@+数字
3
prometheus格式化告警数值
4
Prometheus-Operator监控kube-controller-manager失败
5
内存卡等级划分
seafog
累计撰写
98
篇文章
累计创建
67
个标签
累计收到
13
条评论
导航
首页
归档
日志
相册
友链
目录
搜索
标签搜索
Git
Kube-controller-manager
Proxy
Ploxy
Helm
Windows
Chrome
NetworkPolicy
ENTRYPOINT
Vim
RockyLinux
RabbitMQ
MongoDB
Jenkins
Fail2ban
CentOS
Ubuntu
Resource Quotas
Pod
Filebeat
Controller Manager
Network
Volume
Node mechine
Namespace
LimitRange
Resource QoS
Deployment
ReplicaSet
Replication Controller
Logstash
Elasticsearch
ARP
Pipreqs
Nginx-module-vts
asyncio
TLS
Http2.0
Brotli
Debian
Alpine
ColdKnowledge
TCP/IP
Bash
Flannel
ELK
PHP-FPM
Prometheus
Ingress
Charles
Stream
Redis
Wireshark
Selenium
Etcd
PowerShell
WindowsServer
Supervisor
Linux
MySQL
Python
Yaml
Nginx
AdslProxy
Gitlab
Kubernetes
Docker
标签
Stream
redis之Stream
1 年前
941
0
0
118.1℃
Serveices
Stream基本介绍从redis5.0开始,推出了Stream功能。在Stream中有一个消息链表,所有加入链表中的消息都会被串起来,每一条消息都有自己唯一的ID,还有对应的消息内容,消息内容就是key-value。一个Stream上可以有多个消费者,每个消费者都有一个游标,用于访问消息,在消息链表移动就代表着消费消息,多个消费者之间互不影响。基本命令XADD该命令用于添加消息,返回的是消息的ID
弹