百科.dev
全部条目AI 编程趋势榜开源项目技术资讯提交条目
登录
< 返回工具列表
R

redis-windows

> 数据库
开源

Redis 6.0.20 6.2.18 7.0.15 7.2.8 7.4.3 8.0.0 for Windows

4.1K stars0 点赞0 次浏览
访问官网GitHub

工具介绍

Redis 6.0.20 6.2.18 7.0.15 7.2.8 7.4.3 8.0.0 for Windows

Redis for Windows

Compiled from official Redis source for Windows.

Quick Start

# After download and extract
redis-server.exe redis.conf

# Or use RedisService (recommended)
RedisService.exe run --foreground

Usage

Option 1: RedisService.exe (Recommended)

Automatically handles path conversion. Use native Windows paths.

# Run in foreground
RedisService.exe run --foreground --port 6379 --dir C:\redis-data

# Install as Windows service
RedisService.exe install -c C:\config\redis.conf --dir D:\data\redis --port 6379
net start Redis

# Uninstall service
RedisService.exe uninstall

Option 2: redis-server.exe (Direct)

Important: This build uses Cygwin runtime. Command-line paths must use Cygwin format.

# ✅ Correct - Cygwin path format
redis-server.exe /cygdrive/c/config/redis.conf --dir /cygdrive/d/data --port 6379

# ❌ Wrong - Windows paths not supported
redis-server.exe C:\config\redis.conf --dir D:\data

Path Conversion:

Windows Cygwin C:\path /cygdrive/c/path D:\path /cygdrive/d/path .\data ./data (relative works as-is)

In config file: Use forward slashes (Windows style with /).

# Recommended in redis.conf
dir C:/redis/data
logfile C:/redis/logs/redis.log

RedisService CLI Reference

…

Cross-Partition/Directories

Config, data, and program can be in any location:

# Program: C:\redis\RedisService.exe
# Config:  D:\config\redis.conf
# Data:    E:\data\redis

RedisService.exe run -c D:\config\redis.conf --dir E:\data\redis --foreground

Data Persistence

Data is saved automatically on shutdown. RedisService.exe correctly passes --dir to ensure data is saved to the specified directory.

# Start
RedisService.exe run --foreground --dir C:\redis-data

# Write data
redis-cli SET mykey myvalue

# Graceful shutdown
redis-cli SHUTDOWN

# Restart - data persists
redis-cli GET mykey   # Returns "myvalue"

FAQ

redis-server.exe can't find config file?

Use Cygwin path format:

redis-server.exe /cygdrive/c/config/redis.conf

Or use RedisService.exe which handles path conversion automatically.

Data lost after restart?

  1. Always specify --dir option
  2. Use graceful shutdown (redis-cli SHUTDOWN or Ctrl+C), don't kill the process
  3. Use the same --dir when restarting

Technical Details

  • Build toolchain: MSYS2 / Cygwin
  • Service wrapper: .NET 10.0
  • Path handling: RedisService auto-converts Windows ↔ Cygwin paths

English | 简体中文

Disclaimer

This project is not affiliated with, endorsed by, or sponsored by Redis Ltd. The license provided here applies only to this repository, not to the official Redis project.

This is recommended for local development only. For production environments, please follow Redis official guidance and deploy on Linux. This project is not responsible for any losses caused by its use.

GitHub Issues· 0 开放

在 GitHub 查看全部

暂无开放 Issues,或尚未同步最近议题。

核心特点

  • •Build toolchain: MSYS2 / Cygwin
  • •Service wrapper: .NET 10.0
  • •Path handling: RedisService auto-converts Windows ↔ Cygwin paths

> 标签

C#redisredis-for-windowsredis-serverredis-windows

暂无评论,来聊聊你的看法吧

> 工具信息

发布日期2026年8月1日
最后更新2026年9月17日
分类数据库
定价开源

> 相关工具

P
PostgreSQL
功能强大的开源关系型数据库
R
Redis
内存数据结构存储,常用作缓存与队列
M
MySQL
广泛使用的开源关系型数据库