test
Redis与Garnet性能比较
Redis环境 版本:7.2.4 Garnet环境 版本:v0.10.21 (.NET 8.0) 测试代码 import redis import time # 连接到Redis服务器 client = redis.Redis(host='localhost', port=6379, db=0)
Rust - 延迟初始化(静态/非静态)变量
lazy_static A macro for declaring lazily evaluated statics. Using this macro, it is possible to have statics that require code to be executed at runti
Rust - MyLinkedList
闲来无事写点垃圾... 第一版 Code main-gwcm.rs Output Time elapsed: 79.2771ms 好慢因为我用C++实现的才用50ms左右!main.cpp 优化版 main.rs 美美实现和C++一样的速度! Output