simdb icon indicating copy to clipboard operation
simdb copied to clipboard

simple json db in go

Results 3 simdb issues
Sort by recently updated
recently updated
newest added

given ``` type Person struct { PersonID string `json:"person_id"` First string `json:"first"` Middle string `json:"middle"` Last string `json:"last"` } func (p Person) String() string { return fmt.Sprintf("%s %s %s %s",...

Hey Sony Arouje , simdb/db/simd.go - Line 178,179 , there are two Print statements that dump the compete JSON content and keep printing to console in every query. Is it...

Take a structure like this: ``` type Session struct { Start time.Time `json:"start"` End time.Time `json:"end"` Client string `json:"client"` } ``` and try to devise an 'ID' that refers to...