我的编程空间,编程开发者的网络收藏夹
学习永远不晚

基于Golang怎么实现内存数据库

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

基于Golang怎么实现内存数据库

今天小编给大家分享一下基于Golang怎么实现内存数据库的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。

GO实现内存数据库

实现Redis的database层(核心层:处理命令并返回)

本文涉及以下文件:dict:定义字典的一些方法

  • sync_dict:实现dict

  • db:分数据库

  • command:定义指令

  • ping,keys,string:指令的具体处理逻辑

  • database:单机版数据库

datastruct/dict/dict.go

type Consumer func(key string, val interface{}) booltype Dict interface {   Get(key string) (val interface{}, exists bool)   Len() int   Put(key string, val interface{}) (result int)   PutIfAbsent(key string, val interface{}) (result int)   PutIfExists(key string, val interface{}) (result int)   Remove(key string) (result int)   ForEach(consumer Consumer)   Keys() []string   RandomKeys(limit int) []string   RandomDistinctKeys(limit int) []string   Clear()}

Dict接口:Redis数据结构的接口。这里我们使用sync.Map作为字典的实现,如果想用别的数据结构,换一个实现即可

Consumer:遍历字典所有的键值对,返回值是布尔,true继续遍历,false停止遍历

datastruct/dict/sync_dict.go

type SyncDict struct {   m sync.Map}func MakeSyncDict() *SyncDict {   return &SyncDict{}}func (dict *SyncDict) Get(key string) (val interface{}, exists bool) {   val, ok := dict.m.Load(key)   return val, ok}func (dict *SyncDict) Len() int {   length := 0   dict.m.Range(func(k, v interface{}) bool {      length++      return true   })   return length}func (dict *SyncDict) Put(key string, val interface{}) (result int) {   _, existed := dict.m.Load(key)   dict.m.Store(key, val)   if existed {      return 0   }   return 1}func (dict *SyncDict) PutIfAbsent(key string, val interface{}) (result int) {   _, existed := dict.m.Load(key)   if existed {      return 0   }   dict.m.Store(key, val)   return 1}func (dict *SyncDict) PutIfExists(key string, val interface{}) (result int) {   _, existed := dict.m.Load(key)   if existed {      dict.m.Store(key, val)      return 1   }   return 0}func (dict *SyncDict) Remove(key string) (result int) {   _, existed := dict.m.Load(key)   dict.m.Delete(key)   if existed {      return 1   }   return 0}func (dict *SyncDict) ForEach(consumer Consumer) {   dict.m.Range(func(key, value interface{}) bool {      consumer(key.(string), value)      return true   })}func (dict *SyncDict) Keys() []string {   result := make([]string, dict.Len())   i := 0   dict.m.Range(func(key, value interface{}) bool {      result[i] = key.(string)      i++      return true   })   return result}func (dict *SyncDict) RandomKeys(limit int) []string {   result := make([]string, limit)   for i := 0; i < limit; i++ {      dict.m.Range(func(key, value interface{}) bool {         result[i] = key.(string)         return false      })   }   return result}func (dict *SyncDict) RandomDistinctKeys(limit int) []string {   result := make([]string, limit)   i := 0   dict.m.Range(func(key, value interface{}) bool {      result[i] = key.(string)      i++      if i == limit {         return false      }      return true   })   return result}func (dict *SyncDict) Clear() {   *dict = *MakeSyncDict()}

使用sync.Map实现Dict接口

database/db.go

type DB struct {index intdata  dict.Dict}type ExecFunc func(db *DB, args [][]byte) resp.Replytype CmdLine = [][]bytefunc makeDB() *DB {db := &DB{data: dict.MakeSyncDict(),}return db}func (db *DB) Exec(c resp.Connection, cmdLine [][]byte) resp.Reply {cmdName := strings.ToLower(string(cmdLine[0]))cmd, ok := cmdTable[cmdName]if !ok {return reply.MakeErrReply("ERR unknown command '" + cmdName + "'")}if !validateArity(cmd.arity, cmdLine) {return reply.MakeArgNumErrReply(cmdName)}fun := cmd.executorreturn fun(db, cmdLine[1:]) // 把 set k v 中的set切掉}func validateArity(arity int, cmdArgs [][]byte) bool {argNum := len(cmdArgs)if arity >= 0 {return argNum == arity}return argNum >= -arity}func (db *DB) GetEntity(key string) (*database.DataEntity, bool) {raw, ok := db.data.Get(key)if !ok {return nil, false}entity, _ := raw.(*database.DataEntity)return entity, true}func (db *DB) PutEntity(key string, entity *database.DataEntity) int {return db.data.Put(key, entity)}func (db *DB) PutIfExists(key string, entity *database.DataEntity) int {return db.data.PutIfExists(key, entity)}func (db *DB) PutIfAbsent(key string, entity *database.DataEntity) int {return db.data.PutIfAbsent(key, entity)}func (db *DB) Remove(key string) {db.data.Remove(key)}func (db *DB) Removes(keys ...string) (deleted int) {deleted = 0for _, key := range keys {_, exists := db.data.Get(key)if exists {db.Remove(key)deleted++}}return deleted}func (db *DB) Flush() {db.data.Clear()}

实现Redis中的分数据库

ExecFunc:所有Redis的指令都写成这样的类型

validateArity方法:

  • 定长:set k v => arity=3;

  • 变长:exists k1 k2 k3 ... => arity=-2,表示参数>=2个

database/command.go

var cmdTable = make(map[string]*command)type command struct {   executor ExecFunc   arity    int }func RegisterCommand(name string, executor ExecFunc, arity int) {   name = strings.ToLower(name)   cmdTable[name] = &command{      executor: executor,      arity:    arity,   }}

command:每一个command结构体都是一个指令,例如ping,keys等等

  • arity:参数数量

  • cmdTable:记录所有指令和command结构体的关系

  • RegisterCommand:注册指令的实现,在程序

database/ping.go

func Ping(db *DB, args [][]byte) resp.Reply {    if len(args) == 0 {        return &reply.PongReply{}    } else if len(args) == 1 {        return reply.MakeStatusReply(string(args[0]))    } else {        return reply.MakeErrReply("ERR wrong number of arguments for 'ping' command")    }}func init() {    RegisterCommand("ping", Ping, 1)}

init方法:在启动程序时就会调用这个方法,用于初始化

database/keys.go

func execDel(db *DB, args [][]byte) resp.Reply {   keys := make([]string, len(args))   for i, v := range args {      keys[i] = string(v)   }   deleted := db.Removes(keys...)   return reply.MakeIntReply(int64(deleted))}func execExists(db *DB, args [][]byte) resp.Reply {   result := int64(0)   for _, arg := range args {      key := string(arg)      _, exists := db.GetEntity(key)      if exists {         result++      }   }   return reply.MakeIntReply(result)}func execFlushDB(db *DB, args [][]byte) resp.Reply {   db.Flush()   return &reply.OkReply{}}func execType(db *DB, args [][]byte) resp.Reply {   key := string(args[0])   entity, exists := db.GetEntity(key)   if !exists {      return reply.MakeStatusReply("none")   }   switch entity.Data.(type) {   case []byte:      return reply.MakeStatusReply("string")   }   return &reply.UnknownErrReply{}}func execRename(db *DB, args [][]byte) resp.Reply {   if len(args) != 2 {      return reply.MakeErrReply("ERR wrong number of arguments for 'rename' command")   }   class="lazy" data-src := string(args[0])   dest := string(args[1])      entity, ok := db.GetEntity(class="lazy" data-src)   if !ok {      return reply.MakeErrReply("no such key")   }   db.PutEntity(dest, entity)   db.Remove(class="lazy" data-src)   return &reply.OkReply{}}func execRenameNx(db *DB, args [][]byte) resp.Reply {   class="lazy" data-src := string(args[0])   dest := string(args[1])   _, exist := db.GetEntity(dest)   if exist {      return reply.MakeIntReply(0)   }   entity, ok := db.GetEntity(class="lazy" data-src)   if !ok {      return reply.MakeErrReply("no such key")   }   db.Removes(class="lazy" data-src, dest)   db.PutEntity(dest, entity)   return reply.MakeIntReply(1)}func execKeys(db *DB, args [][]byte) resp.Reply {   pattern := wildcard.CompilePattern(string(args[0]))   result := make([][]byte, 0)   db.data.ForEach(func(key string, val interface{}) bool {      if pattern.IsMatch(key) {         result = append(result, []byte(key))      }      return true   })   return reply.MakeMultiBulkReply(result)}func init() {   RegisterCommand("Del", execDel, -2)   RegisterCommand("Exists", execExists, -2)   RegisterCommand("Keys", execKeys, 2)   RegisterCommand("FlushDB", execFlushDB, -1)   RegisterCommand("Type", execType, 2)   RegisterCommand("Rename", execRename, 3)   RegisterCommand("RenameNx", execRenameNx, 3)}

keys.go实现以下指令:

  • execDel:del k1 k2 k3 ...

  • execExists:exist k1 k2 k3 ...

  • execFlushDB:flushdb

  • execType:type k1

  • execRename:rename k1 k2

  • execRenameNx:renamenx k1 k2

  • execKeys:keys(依赖lib包的工具类wildcard.go)

database/string.go

func execGet(db *DB, args [][]byte) resp.Reply {   key := string(args[0])   bytes, err := db.getAsString(key)   if err != nil {      return err   }   if bytes == nil {      return &reply.NullBulkReply{}   }   return reply.MakeBulkReply(bytes)}func (db *DB) getAsString(key string) ([]byte, reply.ErrorReply) {   entity, ok := db.GetEntity(key)   if !ok {      return nil, nil   }   bytes, ok := entity.Data.([]byte)   if !ok {      return nil, &reply.WrongTypeErrReply{}   }   return bytes, nil}func execSet(db *DB, args [][]byte) resp.Reply {   key := string(args[0])   value := args[1]   entity := &database.DataEntity{      Data: value,   }   db.PutEntity(key, entity)   return &reply.OkReply{}}func execSetNX(db *DB, args [][]byte) resp.Reply {   key := string(args[0])   value := args[1]   entity := &database.DataEntity{      Data: value,   }   result := db.PutIfAbsent(key, entity)   return reply.MakeIntReply(int64(result))}func execGetSet(db *DB, args [][]byte) resp.Reply {   key := string(args[0])   value := args[1]   entity, exists := db.GetEntity(key)   db.PutEntity(key, &database.DataEntity{Data: value})   if !exists {      return reply.MakeNullBulkReply()   }   old := entity.Data.([]byte)   return reply.MakeBulkReply(old)}func execStrLen(db *DB, args [][]byte) resp.Reply {   key := string(args[0])   entity, exists := db.GetEntity(key)   if !exists {      return reply.MakeNullBulkReply()   }   old := entity.Data.([]byte)   return reply.MakeIntReply(int64(len(old)))}func init() {   RegisterCommand("Get", execGet, 2)   RegisterCommand("Set", execSet, -3)   RegisterCommand("SetNx", execSetNX, 3)   RegisterCommand("GetSet", execGetSet, 3)   RegisterCommand("StrLen", execStrLen, 2)}

string.go实现以下指令:

  • execGet:get k1

  • execSet:set k v

  • execSetNX:setnex k v

  • execGetSet:getset k v 返回旧值

  • execStrLen:strlen k

database/database.go

type Database struct {   dbSet []*DB}func NewDatabase() *Database {   mdb := &Database{}   if config.Properties.Databases == 0 {      config.Properties.Databases = 16   }   mdb.dbSet = make([]*DB, config.Properties.Databases)   for i := range mdb.dbSet {      singleDB := makeDB()      singleDB.index = i      mdb.dbSet[i] = singleDB   }   return mdb}func (mdb *Database) Exec(c resp.Connection, cmdLine [][]byte) (result resp.Reply) {   defer func() {      if err := recover(); err != nil {         logger.Warn(fmt.Sprintf("error occurs: %v\n%s", err, string(debug.Stack())))      }   }()   cmdName := strings.ToLower(string(cmdLine[0]))   if cmdName == "select" {      if len(cmdLine) != 2 {         return reply.MakeArgNumErrReply("select")      }      return execSelect(c, mdb, cmdLine[1:])   }   dbIndex := c.GetDBIndex()   selectedDB := mdb.dbSet[dbIndex]   return selectedDB.Exec(c, cmdLine)}func execSelect(c resp.Connection, mdb *Database, args [][]byte) resp.Reply {   dbIndex, err := strconv.Atoi(string(args[0]))   if err != nil {      return reply.MakeErrReply("ERR invalid DB index")   }   if dbIndex >= len(mdb.dbSet) {      return reply.MakeErrReply("ERR DB index is out of range")   }   c.SelectDB(dbIndex)   return reply.MakeOkReply()}func (mdb *Database) Close() {}func (mdb *Database) AfterClientClose(c resp.Connection) {}
  • Database:一组db的集合

  • Exec:执行切换db指令或者其他指令

  • execSelect方法:选择db(指令:select 2)

resp/handler/handler.go

import (database2 "go-redis/database")func MakeHandler() *RespHandler {   var db database.Database   db = database2.NewDatabase()   return &RespHandler{      db: db,   }}

修改实现协议层handler的database实现

架构小结

TCP层服务TCP的连接,然后将连接交给RESP协议层的handler,handler监听客户端的连接,将指令解析后发给管道,管道转给database层(database/database.go),核心层根据命令类型执行不同的方法,然后返回。

以上就是“基于Golang怎么实现内存数据库”这篇文章的所有内容,感谢各位的阅读!相信大家阅读完这篇文章都有很大的收获,小编每天都会为大家更新不同的知识,如果还想学习更多的知识,请关注编程网行业资讯频道。

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

基于Golang怎么实现内存数据库

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

基于Golang怎么实现内存数据库

今天小编给大家分享一下基于Golang怎么实现内存数据库的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。GO实现内存数据库实现
2023-07-05

golang内存数据库怎么实现

在Golang中实现一个内存数据库可以通过以下步骤:定义数据库结构:首先,你需要确定数据库的结构,即定义每个表的字段以及数据类型。可以使用结构体来表示每个表的行。type User struct {ID intName stringAg
2023-10-23

Golang如何实现事务型内存数据库

这篇文章主要讲解了“Golang如何实现事务型内存数据库”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Golang如何实现事务型内存数据库”吧!特性MossDB是一个纯Golang编写、可嵌
2023-07-05

基于内存的关系数据库memsql初探

背景广告系统中,算法模型预估需要根据广告的实时转化统计结果,才能做出更精准的预估;同时,支持多维度聚合查询(例如按照广告各个不同层级维度,按照时间不同粒度的维度),并跨大区合并。一开始的版本是基于mysql,但由于统计数据更新太频繁,异步定期从mysql捞统计
基于内存的关系数据库memsql初探
2019-10-28

Golang实现事务型内存数据库的方法详解

内存数据库经我们经常用到,例如Redis,那么如何从零实现一个内存数据库呢,本文旨在介绍如何使用Golang编写一个KV内存数据库MossDB
2023-03-03

基于Android如何实现将数据库保存到SD卡

有时候为了需要,会将数据库保存到外部存储或者SD卡中(对于这种情况可以通过加密数据来避免数据被破解),比如一个应用支持多个数据,每个数据都需要有一个对应的数据库,并且数据库中的信息量特别大时,这显然更应该将数据库保存在外部存储或者SD卡中,
2022-06-06

java基于数据库怎么实现全局唯一ID

本篇内容主要讲解“java基于数据库怎么实现全局唯一ID”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“java基于数据库怎么实现全局唯一ID”吧!一、原理 在数据库中建立ID序列表记录ID值,
2023-07-06

MySQL数据库基于sysbench实现OLTP基准测试

sysbench是一款非常优秀的基准测试工具,它能够精准的模拟MySQL数据库存储引擎InnoDB的磁盘的I/O模式。因此,基于sysbench的这个特性,下面利用该工具,对MySQL数据库支撑从简单到复杂事务处理工作负载的基准测试与验证。
2022-05-30

基于C++实现Mysql数据库连接池实例

目录项目技术点项目意义项目实现Connection设计ConnectionPool设计项目复杂接口细节刨析项目技术点C语言进行mysql数据库编程无锁单例基于STL队列加C++11新特性保证线程安全实现的生产者消费者模型C++11多线程编
2022-12-07

golang手动释放内存怎么实现

在Go语言中,内存管理是由垃圾回收器自动完成的,不需要手动释放内存。但是,如果有特殊的需求需要手动释放内存,可以使用`runtime`包中的`FreeOSMemory`函数。`FreeOSMemory`函数可以强制垃圾回收器回收未使用的内
2023-10-26

golang并发查询数据库怎么实现

在Go语言中实现并发查询数据库可以使用goroutine和channel来实现。以下是一个简单的示例代码:package mainimport ("database/sql""fmt""log""sync"_ "github.com/g
2023-10-25

golang数据库自动迁移怎么实现

在Go语言中,实现数据库自动迁移可以使用一些第三方库,如gorm、migrate等。下面以使用gorm库实现数据库自动迁移为例进行说明。1. 安装gorm库:使用go get命令安装gorm库。bashgo get -u gorm.io/g
2023-10-20

Jmeter基于JDBC请求实现MySQL数据库测试

理论知识部分: 一、简单总结几点数据库测试点: 1.检查接口返回的数据是否与预期一致 2.传递数据类型错误时能否处理,比如数据类型要求是整数,传递小数时能否处理 3.接口参数的边界值 4.接口处理数据的时间 5.接口的安全性 二、Jemet
2022-05-19

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录