Redka 旨在使用 SQLite 重新实现 Redis 的优秀部分,同时保持与 Redis API 的兼容性。
有意思的特性:
Redia 并不期望完全达到 Redis 那么高的性能,但是性能上也并不会落后很多。它的主要功能还是 SQL + Redis 的功能,集成了两种优秀产品 SQLite 和 Redis 的盛世美颜。
Command Go API Description
------- ------ -----------
DECR DB.Str().Incr Decrements the integer value of a key by one.
DECRBY DB.Str().Incr Decrements a number from the integer value of a key.
GET DB.Str().Get Returns the value of a key.
GETSET DB.Str().SetWith Sets the key to a new value and returns the prev value.
INCR DB.Str().Incr Increments the integer value of a key by one.
INCRBY DB.Str().Incr Increments the integer value of a key by a number.
INCRBYFLOAT DB.Str().IncrFloat Increments the float value of a key by a number.
MGET DB.Str().GetMany Returns the values of one or more keys.
MSET DB.Str().SetMany Sets the values of one or more keys.
PSETEX DB.Str().SetExpires Sets the value and expiration time (in ms) of a key.
SET DB.Str().Set Sets the value of a key.
SETEX DB.Str().SetExpires Sets the value and expiration (in sec) time of a key.
SETNX DB.Str().SetWith Sets the value of a key when the key doesn't exist.
暂时不支持的命令
APPEND GETDEL GETEX GETRANGE LCS MSETNX SETRANGE STRLEN SUBSTR
Command Go API Description
------- ------ -----------
LINDEX DB.List().Get Returns an element by its index.
LINSERT DB.List().Insert* Inserts an element before or after another element.
LLEN DB.List().Len Returns the length of a list.
LPOP DB.List().PopFront Returns the first element after removing it.
LPUSH DB.List().PushFront Prepends an element to a list.
LRANGE DB.List().Range Returns a range of elements.
LREM DB.List().Delete* Removes elements from a list.
LSET DB.List().Set Sets the value of an element by its index.
LTRIM DB.List().Trim Removes elements from both ends a list.
RPOP DB.List().PopBack Returns the last element after removing it.
RPOPLPUSH DB.List().PopBackPushFront Removes the last element and pushes it to another list.
RPUSH DB.List().PushBack Appends an element to a list.
暂时不支持的命令
BLMOVE BLMPOP BLPOP BRPOP BRPOPLPUSH LMOVE LMPOP
LPOS LPUSHX RPUSHX
Command Go API Description
------- ------ -----------
SADD DB.Set().Add Adds one or more members to a set.
SCARD DB.Set().Len Returns the number of members in a set.
SDIFF DB.Set().Diff Returns the difference of multiple sets.
SDIFFSTORE DB.Set().DiffStore Stores the difference of multiple sets.
SINTER DB.Set().Inter Returns the intersection of multiple sets.
SINTERSTORE DB.Set().InterStore Stores the intersection of multiple sets.
SISMEMBER DB.Set().Exists Determines whether a member belongs to a set.
SMEMBERS DB.Set().Items Returns all members of a set.
SMOVE DB.Set().Move Moves a member from one set to another.
SPOP DB.Set().Pop Returns a random member after removing it.
SRANDMEMBER DB.Set().Random Returns a random member from a set.
SREM DB.Set().Delete Removes one or more members from a set.
SSCAN DB.Set().Scanner Iterates over members of a set.
SUNION DB.Set().Union Returns the union of multiple sets.
SUNIONSTORE DB.Set().UnionStore Stores the union of multiple sets.
暂时不支持的命令
SINTERCARD SMISMEMBER
Command Go API Description
------- ------------------ -----------
HDEL DB.Hash().Delete Deletes one or more fields and their values.
HEXISTS DB.Hash().Exists Determines whether a field exists.
HGET DB.Hash().Get Returns the value of a field.
HGETALL DB.Hash().Items Returns all fields and values.
HINCRBY DB.Hash().Incr Increments the integer value of a field.
HINCRBYFLOAT DB.Hash().IncrFloat Increments the float value of a field.
HKEYS DB.Hash().Keys Returns all fields.
HLEN DB.Hash().Len Returns the number of fields.
HMGET DB.Hash().GetMany Returns the values of multiple fields.
HMSET DB.Hash().SetMany Sets the values of multiple fields.
HSCAN DB.Hash().Scanner Iterates over fields and values.
HSET DB.Hash().SetMany Sets the values of one or more fields.
HSETNX DB.Hash().SetNotExists Sets the value of a field when it doesn't exist.
HVALS DB.Hash().Exists Returns all values.
暂时不支持的命令
HRANDFIELD HSTRLEN
Command Go API Description
------- ------ -----------
ZADD DB.ZSet().AddMany Adds or updates one or more members of a set.
ZCARD DB.ZSet().Len Returns the number of members in a set.
ZCOUNT DB.ZSet().Count Returns the number of members of a set within a range of scores.
ZINCRBY DB.ZSet().Incr Increments the score of a member in a set.
ZINTER DB.ZSet().InterWith Returns the intersection of multiple sets.
ZINTERSTORE DB.ZSet().InterWith Stores the intersection of multiple sets in a key.
ZRANGE DB.ZSet().RangeWith Returns members of a set within a range of indexes.
ZRANGEBYSCORE DB.ZSet().RangeWith Returns members of a set within a range of scores.
ZRANK DB.ZSet().GetRank Returns the index of a member in a set ordered by ascending scores.
ZREM DB.ZSet().Delete Removes one or more members from a set.
ZREMRANGEBYRANK DB.ZSet().DeleteWith Removes members of a set within a range of indexes.
ZREMRANGEBYSCORE DB.ZSet().DeleteWith Removes members of a set within a range of scores.
ZREVRANGE DB.ZSet().RangeWith Returns members of a set within a range of indexes in reverse order.
ZREVRANGEBYSCORE DB.ZSet().RangeWith Returns members of a set within a range of scores in reverse order.
ZREVRANK DB.ZSet().GetRankRev Returns the index of a member in a set ordered by descending scores.
ZSCAN DB.ZSet().Scan Iterates over members and scores of a set.
ZSCORE DB.ZSet().GetScore Returns the score of a member in a set.
ZUNION DB.ZSet().UnionWith Returns the union of multiple sets.
ZUNIONSTORE DB.ZSet().UnionWith Stores the union of multiple sets in a key.
不支持的命令
BZMPOP BZPOPMAX BZPOPMIN ZDIFF ZDIFFSTORE ZINTERCARD
ZLEXCOUNT ZMPOP ZMSCORE ZPOPMAX ZPOPMIN ZRANDMEMBER
ZRANGEBYLEX ZRANGESTORE ZREMRANGEBYLEX ZREVRANGEBYLEX
Command Go API Description
------- ------ -----------
DBSIZE DB.Key().Len Returns the total number of keys.
DEL DB.Key().Delete Deletes one or more keys.
EXISTS DB.Key().Count Determines whether one or more keys exist.
EXPIRE DB.Key().Expire Sets the expiration time of a key (in seconds).
EXPIREAT DB.Key().ExpireAt Sets the expiration time of a key to a Unix timestamp.
FLUSHDB DB.Key().DeleteAll Deletes all keys from the database.
KEYS DB.Key().Keys Returns all key names that match a pattern.
PERSIST DB.Key().Persist Removes the expiration time of a key.
PEXPIRE DB.Key().Expire Sets the expiration time of a key in ms.
PEXPIREAT DB.Key().ExpireAt Sets the expiration time of a key to a Unix ms timestamp.
RANDOMKEY DB.Key().Random Returns a random key name from the database.
RENAME DB.Key().Rename Renames a key and overwrites the destination.
RENAMENX DB.Key().RenameNotExists Renames a key only when the target key name doesn't exist.
SCAN DB.Key().Scanner Iterates over the key names in the database.
TTL DB.Key().Get Returns the expiration time in seconds of a key.
TYPE DB.Key().Get Returns the type of value stored at a key.
不支持的命令
COPY DUMP EXPIRETIME MIGRATE MOVE OBJECT PEXPIRETIME
PTTL RESTORE SORT SORT_RO TOUCH TTL TYPE UNLINK
WAIT WAITAOF
Command Go API Description
------- ------ -----------
DISCARD DB.View / DB.Update Discards a transaction.
EXEC DB.View / DB.Update Executes all commands in a transaction.
MULTI DB.View / DB.Update Starts a transaction.
与 Redis 不同,Redka 的事务完全符合 ACID 属性,在发生故障时会自动回滚。
不支持的命令
UNWATCH WATCH
Command Go API Description
------- ------ -----------
ECHO - Returns the given string.
PING - Returns the server's liveliness response.
你可以以独立的服务的形式安装。官方文档提供了方便的 Linux、macOS 的安装脚本,你也可以使用 docker 进行部署。
也可以在你的 Go 程序中当成一个库引用: go get github.com/nalgeon/redka
,当然了你也必须引入 sqlite 的库,比如 github.com/mattn/go-sqlite3
或者 modernc.org/sqlite
。
你可以使用 redka [-h host] [-p port] [db-path]
启动一个 redka 服务,比如
./redka
./redka data.db
./redka -h 0.0.0.0 -p 6379 data.db
如果没有指定数据库文件,那么它就完全使用内存的方式。
如果当成一个库引入使用,你可以像这样在进程内使用:\
package main
import (
"log"
_ "github.com/mattn/go-sqlite3"
"github.com/nalgeon/redka"
)
func main() {
// Open or create the data.db file.
db, err := redka.Open("data.db", nil)
if err != nil {
log.Fatal(err)
}
// Always close the database when you are finished.
defer db.Close()
// ...
}
如果是使用内存的方式,可以指定 sqlite 使用内存的方式打开:
// All data is lost when the database is closed.
redka.Open("file:redka?mode=memory&cache=shared")
然后代码中就可以直接调用:
db.Str().Set("name", "alice")
db.Str().Set("age", 25)
count, err := db.Key().Count("name", "age", "city")
slog.Info("count", "count", count, "err", err)
name, err := db.Str().Get("name")
slog.Info("get", "name", name, "err", err)
下面的代码是使用事务的例子:
updCount := 0
err := db.Update(func(tx *redka.Tx) error {
err := tx.Str().Set("name", "bob")
if err != nil {
return err
}
updCount++
err = tx.Str().Set("age", 50)
if err != nil {
return err
}
updCount++
return nil
})
slog.Info("updated", "count", updCount, "err", err)
作者在 Apple M1 8-core CPU, 16GB RAM 的苹果机器和 Redis 进行了性能比较。 使用下面的场景进行比较(redis-benchmark -p 6379 -q -c 10 -n 1000000 -r 10000 -t get,set
):
比 Redis 慢 2~5 倍,这也合理,毕竟底层采用一个关系数据库进行存储。
Redka 使用 redcon 进行 Redis 命令的解析,然后针对每种大类的 Redis 命令,会有一个单独的表进行存储。
rkey
---
id integer primary key
key text not null
type integer not null -- 1 string, 2 list, 3 set, 4 hash, 5 sorted set
version integer not null -- incremented when the key value is updated
etime integer -- expiration timestamp in unix milliseconds
mtime integer not null -- modification timestamp in unix milliseconds
len integer -- number of child elements
rstring
---
kid integer not null -- FK -> rkey.id
value blob not null
rlist
---
kid integer not null -- FK -> rkey.id
pos real not null -- is used for ordering, but is not an index
elem blob not null
rset
---
kid integer not null -- FK -> rkey.id
elem blob not null
rhash
---
kid integer not null -- FK -> rkey.id
field text not null
value blob not null
rzset
---
kid integer not null -- FK -> rkey.id
elem blob not null
score real not null
既然它支持 sqlite, 我们可以把它 port 到其它的数据库上,比如 clickhouse,这样我们就可以支持巨量的数据了。
当然更深一步,我们还可以接入其他的 NoSQL 数据库,比如 RocksDB 等,类似的项目都有很多了。
这是一个很有意思的项目。
本文由微信公众号鸟窝聊技术原创,哈喽比特收录。
文章来源:https://mp.weixin.qq.com/s/j4yLNzB9EAY9s1-QWn5nFw
京东创始人刘强东和其妻子章泽天最近成为了互联网舆论关注的焦点。有关他们“移民美国”和在美国购买豪宅的传言在互联网上广泛传播。然而,京东官方通过微博发言人发布的消息澄清了这些传言,称这些言论纯属虚假信息和蓄意捏造。
日前,据博主“@超能数码君老周”爆料,国内三大运营商中国移动、中国电信和中国联通预计将集体采购百万台规模的华为Mate60系列手机。
据报道,荷兰半导体设备公司ASML正看到美国对华遏制政策的负面影响。阿斯麦(ASML)CEO彼得·温宁克在一档电视节目中分享了他对中国大陆问题以及该公司面临的出口管制和保护主义的看法。彼得曾在多个场合表达了他对出口管制以及中荷经济关系的担忧。
今年早些时候,抖音悄然上线了一款名为“青桃”的 App,Slogan 为“看见你的热爱”,根据应用介绍可知,“青桃”是一个属于年轻人的兴趣知识视频平台,由抖音官方出品的中长视频关联版本,整体风格有些类似B站。
日前,威马汽车首席数据官梅松林转发了一份“世界各国地区拥车率排行榜”,同时,他发文表示:中国汽车普及率低于非洲国家尼日利亚,每百户家庭仅17户有车。意大利世界排名第一,每十户中九户有车。
近日,一项新的研究发现,维生素 C 和 E 等抗氧化剂会激活一种机制,刺激癌症肿瘤中新血管的生长,帮助它们生长和扩散。
据媒体援引消息人士报道,苹果公司正在测试使用3D打印技术来生产其智能手表的钢质底盘。消息传出后,3D系统一度大涨超10%,不过截至周三收盘,该股涨幅回落至2%以内。
9月2日,坐拥千万粉丝的网红主播“秀才”账号被封禁,在社交媒体平台上引发热议。平台相关负责人表示,“秀才”账号违反平台相关规定,已封禁。据知情人士透露,秀才近期被举报存在违法行为,这可能是他被封禁的部分原因。据悉,“秀才”年龄39岁,是安徽省亳州市蒙城县人,抖音网红,粉丝数量超1200万。他曾被称为“中老年...
9月3日消息,亚马逊的一些股东,包括持有该公司股票的一家养老基金,日前对亚马逊、其创始人贝索斯和其董事会提起诉讼,指控他们在为 Project Kuiper 卫星星座项目购买发射服务时“违反了信义义务”。
据消息,为推广自家应用,苹果现推出了一个名为“Apps by Apple”的网站,展示了苹果为旗下产品(如 iPhone、iPad、Apple Watch、Mac 和 Apple TV)开发的各种应用程序。
特斯拉本周在美国大幅下调Model S和X售价,引发了该公司一些最坚定支持者的不满。知名特斯拉多头、未来基金(Future Fund)管理合伙人加里·布莱克发帖称,降价是一种“短期麻醉剂”,会让潜在客户等待进一步降价。
据外媒9月2日报道,荷兰半导体设备制造商阿斯麦称,尽管荷兰政府颁布的半导体设备出口管制新规9月正式生效,但该公司已获得在2023年底以前向中国运送受限制芯片制造机器的许可。
近日,根据美国证券交易委员会的文件显示,苹果卫星服务提供商 Globalstar 近期向马斯克旗下的 SpaceX 支付 6400 万美元(约 4.65 亿元人民币)。用于在 2023-2025 年期间,发射卫星,进一步扩展苹果 iPhone 系列的 SOS 卫星服务。
据报道,马斯克旗下社交平台𝕏(推特)日前调整了隐私政策,允许 𝕏 使用用户发布的信息来训练其人工智能(AI)模型。新的隐私政策将于 9 月 29 日生效。新政策规定,𝕏可能会使用所收集到的平台信息和公开可用的信息,来帮助训练 𝕏 的机器学习或人工智能模型。
9月2日,荣耀CEO赵明在采访中谈及华为手机回归时表示,替老同事们高兴,觉得手机行业,由于华为的回归,让竞争充满了更多的可能性和更多的魅力,对行业来说也是件好事。
《自然》30日发表的一篇论文报道了一个名为Swift的人工智能(AI)系统,该系统驾驶无人机的能力可在真实世界中一对一冠军赛里战胜人类对手。
近日,非营利组织纽约真菌学会(NYMS)发出警告,表示亚马逊为代表的电商平台上,充斥着各种AI生成的蘑菇觅食科普书籍,其中存在诸多错误。
社交媒体平台𝕏(原推特)新隐私政策提到:“在您同意的情况下,我们可能出于安全、安保和身份识别目的收集和使用您的生物识别信息。”
2023年德国柏林消费电子展上,各大企业都带来了最新的理念和产品,而高端化、本土化的中国产品正在不断吸引欧洲等国际市场的目光。
罗永浩日前在直播中吐槽苹果即将推出的 iPhone 新品,具体内容为:“以我对我‘子公司’的了解,我认为 iPhone 15 跟 iPhone 14 不会有什么区别的,除了序(列)号变了,这个‘不要脸’的东西,这个‘臭厨子’。