Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 335 Bytes

README.md

File metadata and controls

10 lines (8 loc) · 335 Bytes

GoSql

A NoSQL database built in Go

Commands to the database should be structured in the following manner and sent to the socket on localhost:3333 using the TCP/IP Protocol:

  • Create: "CREATE [Id] [Value String]"
  • Update: "UPDATE [Id] [New Value String]"
  • Get: "GET [Id]"
  • Delete : "DELETE [Id]"