Skip to content

Vluxe/DashDB

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DashDB

The fast, simple, scalable, and safe key-value DB in Go. This database is designed to be used with conductor for scalability.

Examples

  d, err := dash.New()
  if err != nil {
    fmt.Println(err)
    return
  }
  defer d.Cleanup()

  loaded := d.Get("name")
  fmt.Println("disk value is:", loaded)

  d.Set("name", "Dalton")
  val := d.Get("name")
  fmt.Println("value is:", val)

  d.Remove("name")
  fmt.Println("remove value")

  d.Set("name", "Austin")
  v := d.Get("name")
  fmt.Println("value is:", v)

Also show conductor integration!

About

consistent, scalable, and safe key-value DB in Go.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages