tiedot icon indicating copy to clipboard operation
tiedot copied to clipboard

A rudimentary implementation of a basic document (NoSQL) database in Go

Results 27 tiedot issues
Sort by recently updated
recently updated
newest added

Could be a feature request if it's not already in place and I just can't find it in the docs, but is there (or could there be) something like a...

Thank you for this database. I have not done much with it yet (just played a little) but willing to use it in production. From the docs, I suppose it...

I may have missed it in the doc. How can I index datetime fields and perform datetime range lookup?

Hey, tiedot's great. It would be good if tiedot supported direct struct marshal/unmarshal. There's no reason it shouldn't, as `encoding/json` supports it, and that's what tiedot's using. I see that...

HouzuoGuo, By incremented IDs, I mean ID 1 for first record, 2 for second record, 3 for third and so forth. I am pretty interested in `tiedot`, played around it,...

https://github.com/HouzuoGuo/tiedot/blob/21707c0a3e12f008577d5384772fbd7ce9bb059d/httpapi/jwt.go#L244 if the first argument to pass type `type MapClaims map[string]interface{}` example how here: ```go if !sliceContainsStr(tokenClaims[JWT_ENDPOINTS_ATTR], url) { http.Error(w, "", http.StatusUnauthorized) return ``` It `switch possibleSlice.(type) {` will return...

bug

In #157 from how I can interpret it, added json config feature to set how much space tiedot shall use when creating the database, yet there's barely any hint of...

It works well when I check it yesterday, it has stores 51GB data. today it grows up to 61GB, it return nothing by http api, also by golang script. when...

Hi! Seems variable `numPartsAssumed` is unused and it can return error early. Please review it

https://github.com/HouzuoGuo/tiedot/blob/791033267fb3d7b02f0465a2527e8048485ee506/httpapi/srv_test.go#L131 Looks like there is a mistake inside 3 recovers inside that file. If `r` is `nil`, it can't match `sprintf` result, so there is something wrong here. I would...