mateenbagheri / memorabilia

Apache License 2.0
0 stars 0 forks source link

feat(#5, #6): set and get commands #7

Closed mateenbagheri closed 1 month ago

mateenbagheri commented 2 months ago

this base structure is consisted of file structures, proto and grpc server modifications and initializing the repository for commands repository.

mateenbagheri commented 2 months ago

An important thing to handle in this PR is the way memorabilia interacts with user data. I intend memorabilia to be able to detect user data types such as float, integer and maps[might leave map implementations to future]. and this can not be achieved by what I have written so far. Must add this to Task management details for task #5 and #4.

mateenbagheri commented 2 months ago

Now I realize using Golang type system is not optimal for my project. I need to be able to have a unique datastore for my data. Not multiple maps which I might need to look each one up separately for my data. I might start implementing type systems and type handling like Streame has