We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
文章链接:Redis持久化机制详解 | JavaGuide 文中提到了 aof 校验和机制,但实际上,我在 redis 4.0 和 redis 6.0 的源码中,在服务启动阶段的代码里,都只找到了对 rdb 数据的 crc64 校验和检查,以及 redis.conf 中只有配置项 rdbchecksum。
还是说,这里的 aof 校验和机制是在以该 aof 文件是混合持久化模式下重写得到的?对 rdb 数据那部分的验证?
The text was updated successfully, but these errors were encountered:
我在 redis 4.0 和 redis 6.0 的源码中,在服务启动阶段的代码里,都只找到了对 rdb 数据的 crc64 校验和检查,以及 redis.conf 中只有配置项 rdbchecksum。 还是说,这里的 aof 校验和机制是在以该 aof 文件是混合持久化模式下重写得到的?对 rdb 数据那部分的验证?
我在 redis 4.0 和 redis 6.0 的源码中,在服务启动阶段的代码里,都只找到了对 rdb 数据的 crc64 校验和检查,以及 redis.conf 中只有配置项 rdbchecksum。
是这样的,应该是我理解出错了。如果感兴趣的话,欢迎对这部分内容进行修正哈~
Sorry, something went wrong.
No branches or pull requests
文章链接:Redis持久化机制详解 | JavaGuide
文中提到了 aof 校验和机制,但实际上,我在 redis 4.0 和 redis 6.0 的源码中,在服务启动阶段的代码里,都只找到了对 rdb 数据的 crc64 校验和检查,以及 redis.conf 中只有配置项 rdbchecksum。
还是说,这里的 aof 校验和机制是在以该 aof 文件是混合持久化模式下重写得到的?对 rdb 数据那部分的验证?
The text was updated successfully, but these errors were encountered: