Redis如何将二进制数据写入dump文件?

标签 redis

我想知道REDIS如何写入二进制数据。 它打开一个不是“b”模式的文件。

fp = fopen(tmpfile,"w")

在这方面的任何帮助。

最佳答案

在liunx中,fopen没有b模式,参见fopen man doc:

  r      Open text file for reading.  The stream is positioned at the beginning of the file.

   r+     Open for reading and writing.  The stream is positioned at the beginning of the file.

   w      Truncate file to zero length or create text file for writing.  The stream is positioned at the beginning of the file.

   w+     Open for reading and writing.  The file is created if it does not exist, otherwise it is truncated.  The stream is positioned at the beginning of the file.

   a      Open for appending (writing at end of file).  The file is created if it does not exist.  The stream is positioned at the end of the file.

   a+     Open  for reading and appending (writing at end of file).  The file is created if it does not exist.  The initial file position for reading is at the beginning of the file,
          but output is always appended to the end of the file.

关于Redis如何将二进制数据写入dump文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20655710/

相关文章:

websocket - 连接来自 Angular 项目的 Laravel 回声

c# - Microsoft.Extensions.Caching.Redis 选择与 db0 不同的数据库

node.js - 如何获取 Redis 的 lpop 或 rpop 项的索引

redis - 有什么方法可以将 Redis 配置为对键不区分大小写?

Redis - 处理数据结构的变化

amazon-web-services - 由于 redis 内存使用,Redis cli 无法连接到 AWS ElastiCache,但应用程序仍然能够通信

c# - 从Azure Redis缓存插入或删除值时,是否需要在代码级别进行同步?

c - Redis:数据以换行符开头时的SET命令

express - Redis monitor 命令每秒显示相同的请求

Redis:为什么 Lua 脚本要取代事务?