摘要: select prod_id,prod_name,prod_price from products where vend_id = 1003 and prod_price <= 10; 输出结果: + + + + | prod_id | prod_name | prod_price | + + + 阅读全文
posted @ 2023-06-11 21:45 99号的格调 阅读(10) 评论(0) 推荐(0) 编辑
摘要: IntSet是redis集合的一种实现方式,基于整数数组来实现,并且具备长度可变,有序等特征; 整数集合的实现 typedef struct intset{ //编码方式 uint32_t encoding; //集合包含元素的数量 uint32_t length; //保存元素的数组 int8_t 阅读全文
posted @ 2023-06-11 11:13 99号的格调 阅读(14) 评论(0) 推荐(0) 编辑