[WIP] Store Sync (#1365)

* Initial cache implementation

* Write queue implementation

* Accidentally started writing the storage sync service
This commit is contained in:
Jake Sanders
2020-03-18 16:39:36 +00:00
committed by GitHub
parent 41f8a8cb00
commit c91bf7e9e7
8 changed files with 272 additions and 54 deletions

View File

@@ -1,15 +0,0 @@
package cache
// import "testing"
// func TestCache(t *testing.T) {
// c := NewStore()
// if err := c.Init(); err != nil {
// //t.Fatal(err)
// }
// if results, err := c.Read("test"); err != nil {
// //t.Fatal(err)
// } else {
// println(results)
// }
// }