Skip to content

Commit

Permalink
Merge pull request #3 from steady-bytes/table-index
Browse files Browse the repository at this point in the history
Final Repo, and integration with BadgerDB
  • Loading branch information
AndrewSC208 authored Jan 23, 2024
2 parents b809853 + ed04885 commit 90af614
Show file tree
Hide file tree
Showing 31 changed files with 1,408 additions and 941 deletions.
29 changes: 26 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"cwd": "${workspaceFolder}",
"debugAdapter": "dlv-dap",
"env": {
"CMD": "register"
"CMD": "make_cluster"
}
},
{
Expand All @@ -48,15 +48,38 @@
}
},
{
"name": "Blueprint Init",
"name": "Blueprint CMD: Get Test",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "pkg/blueprint-client/main.go",
"cwd": "${workspaceFolder}",
"debugAdapter": "dlv-dap",
"env": {
"CMD": "init"
"CMD": "get_value"
}
}, {
"name": "Blueprint CMD: Load Test",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "pkg/blueprint-client/main.go",
"cwd": "${workspaceFolder}",
"debugAdapter": "dlv-dap",
"env": {
"CMD": "load_test_key_value"
}
},
{
"name": "Blueprint CMD: List",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "pkg/blueprint-client/main.go",
"cwd": "${workspaceFolder}",
"debugAdapter": "dlv-dap",
"env": {
"CMD": "list_all"
}
},
{
Expand Down
2 changes: 0 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,4 @@
"titleBar.activeBackground": "#ff9d00",
"titleBar.inactiveBackground": "#632e2e"
},
// "editor.wordWrap": "wordWrapColumn",
// "editor.wordWrapColumn": 100
}
2 changes: 1 addition & 1 deletion api/gen/go/consensus/fsm/v1/fsm.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions api/gen/go/consensus/raft/v1/service.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 0 additions & 5 deletions api/gen/go/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,3 @@ require (
connectrpc.com/connect v1.14.0
google.golang.org/protobuf v1.32.0
)

require (
github.com/google/go-cmp v0.6.0 // indirect
golang.org/x/net v0.19.0 // indirect
)
9 changes: 6 additions & 3 deletions api/gen/go/go.sum
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
connectrpc.com/connect v1.14.0 h1:PDS+J7uoz5Oui2VEOMcfz6Qft7opQM9hPiKvtGC01pA=
connectrpc.com/connect v1.14.0/go.mod h1:uoAq5bmhhn43TwhaKdGKN/bZcGtzPW1v+ngDTn5u+8s=
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
golang.org/x/net v0.19.0 h1:zTwKpTd2XuCqf8huc7Fo2iSy+4RHPd10s4KzeTnVr1c=
golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ=
github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=
github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
golang.org/x/net v0.17.0 h1:pVaXccu2ozPjCXewfr1S7xza/zcXTity9cCdXQYSjIM=
golang.org/x/net v0.17.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE=
golang.org/x/text v0.13.0 h1:ablQoSUd0tRdKxZewP80B+BaqeKJuVhuRxj/dkrun3k=
golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE=
google.golang.org/protobuf v1.32.0 h1:pPC6BG5ex8PDFnkbrGU3EixyhKcQ2aDuBS36lqK/C7I=
google.golang.org/protobuf v1.32.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos=
147 changes: 147 additions & 0 deletions api/gen/go/registry/key_value/v1/models.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 90af614

Please sign in to comment.