惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

The Cloudflare Blog
Microsoft Security Blog
Microsoft Security Blog
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
L
LangChain Blog
W
WeLiveSecurity
P
Proofpoint News Feed
月光博客
月光博客
NISL@THU
NISL@THU
L
LINUX DO - 最新话题
Webroot Blog
Webroot Blog
T
Threatpost
Y
Y Combinator Blog
www.infosecurity-magazine.com
www.infosecurity-magazine.com
T
Threat Research - Cisco Blogs
Vercel News
Vercel News
Jina AI
Jina AI
阮一峰的网络日志
阮一峰的网络日志
S
Schneier on Security
J
Java Code Geeks
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
小众软件
小众软件
MyScale Blog
MyScale Blog
N
News and Events Feed by Topic
Stack Overflow Blog
Stack Overflow Blog
有赞技术团队
有赞技术团队
The Hacker News
The Hacker News
Schneier on Security
Schneier on Security
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
Help Net Security
Help Net Security
Recent Announcements
Recent Announcements
S
Security @ Cisco Blogs
C
CXSECURITY Database RSS Feed - CXSecurity.com
S
Securelist
T
The Exploit Database - CXSecurity.com
云风的 BLOG
云风的 BLOG
C
Cisco Blogs
雷峰网
雷峰网
量子位
Google DeepMind News
Google DeepMind News
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Spread Privacy
Spread Privacy
L
Lohrmann on Cybersecurity
I
Intezer
T
The Blog of Author Tim Ferriss
G
GRAHAM CLULEY
D
DataBreaches.Net
V
Vulnerabilities – Threatpost
P
Privacy & Cybersecurity Law Blog
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
罗磊的独立博客

博客园 - 大卫小东(Sheldon)

Rust 推荐使用宏而非普通函数的场景 华为公司发布半导体演进新范式 - “韬(τ)定律”(Tau Law) 霍尔定理和最大流算法 入门 Rudist v0.5.1 发布:AI 驱动的 Redis 客户端,更快、更直观 集成AI 的 Redis 客户端 Rudist发布新版了 大模型智能体 (agent)简易流程介绍 在Mac安装阿里巴巴新神器copaw GIM 2.0 发布:真正让 AI 提交消息可定制、可控、可项目级优化 postgreSQL 中的自定义操作符 SQL查询中的窗口函数(主要以 PostgreSQL 为例) SQL中的CTE用法初步(Common Table Expression公共表表达式) 公司新来的00后老板让我们把数据库改成PostgreSQL,大家怒了😂 革命你的 Git 提交消息 - GIM 1.8.0 发布了! 使用JMH对远程接口进行压测 如何用Java25编译Java17的项目 写了一个BBP算法的实现库,欢迎讨论 智能生成git提交消息工具 GIM 发布 1.7 版本了 面向 Git 用户的 jujutsu 使用入门 GIM 1.5发布了! 支持Windows系统了 GIM 1.4 发布了 (附使用 mkdocs 快速制作静态站点流程)
Rudist 0.4.3 发布:让 AI Agent 替你操作 Redis
大卫小东(Sheldon) · 2026-04-01 · via 博客园 - 大卫小东(Sheldon)

本次更新主要推出了 agent 模式:

Agent Mode

使用场景:
适用于 复杂操作、多轮对话以及直接访问 Redis 数据

特性:

  • 有状态(Stateful)
    对话上下文会在多轮消息之间保持,从而实现更自然的交互。

  • Redis 工具访问
    AI 可以访问所有 Redis 工具,包括:

    • filter_keys:使用模式搜索 key
    • get_key_info:获取 key 的详细信息
    • execute_redis_command:执行任意 Redis 命令
    • delete_keysset_stringset_ttl 等更多工具

完整的工具列表: https://redis-egui-client.pages.dev/ai_tools/

  • 直接返回结果
    AI 可以 直接从 Redis 获取数据并返回结果,无需每一步都让用户确认。

[!温馨提示]
该模式需要具备 工具调用(Tool Calling / Function Calling)和推理能力 的大语言模型。

示例交互:
image

单次对话中工具调用次数有上限:

image


下载体验

GitHub:

https://github.com/davelet/redis-egui-client/releases/tag/v0.4.3


大多数 Redis GUI 工具只解决一件事:手动操作数据库

你浏览 key。
你输入命令。
你调试数据。

但随着 AI 工具的发展,我们开始思考一个问题:

如果 Redis 的操作不仅由人完成,而是可以由 LLM 和 Agent 来驱动,会怎样?

这就是 Rudist 诞生的初衷。

0.4.3 版本中,我们加入了一个重要能力:

用 Chat 操作 Redis,并引入 Agent 交换模式(Agent Exchange Mode)。

项目地址:

https://github.com/davelet/redis-egui-client


问题在于:

现在的 Redis 工具并不是为 Agent 设计的。

所以我们决定做一个 Agent 友好的 Redis 客户端

未来:AI 原生开发工具

开发工具正在发生变化。

未来的软件工具很可能是:

Human + AI + Agents 协作

Redis 是一个非常适合探索这个方向的系统。

rudist 希望成为 AI 原生数据库工具 的一次尝试。

如果你对这些方向感兴趣:

  • AI Agent
  • Redis 工具
  • Rust 桌面应用

欢迎试试看这个项目。