Author | SHA1 | Message | Date |
---|---|---|---|
Zach Ramsay | 44dad6d70b |
Revert "detele everything"
This reverts commit
|
6 years ago |
Zach Ramsay | d02c5d1e30 | detele everything | 6 years ago |
Ethan Buchman | ae3bf81833 | mv tmlibs files to libs dir | 6 years ago |
Ethan Buchman | 468be0f8d6 | mv remotedb, proto, grpcdb all under db/remotedb | 7 years ago |
Christopher Goes |
45514a6013
|
Address PR comments | 7 years ago |
Christopher Goes |
2cca5a7a4c
|
Implement TLS/SSL | 7 years ago |
Emmanuel T Odeke |
5d12e1eb46
|
remotedb: a client package implementing the db.DB interface
Simplified the abstractions to remotedb, a package that allows clients to use whatever database they can in client code without having to switch out their code e.g ```go client, err := remotedb.NewInsecure(":9888") ... // Just like they'd initialize locally in := &remotedb.Init{ Name: "test-remote-db", Type: "leveldb", Dir: "/tmp/dbs", } if err := client.InitRemote(in); err != nil { log.Fatalf("Failed to initialize the database") } v1 := client.Get(k1) client.Set(k9, dog) for itr := client.Iterator(a1, z1); itr.Valid(); itr.Next() { k, v := itr.Key(), itr.Value() dom := itr.Domain() ... } ``` |
7 years ago |