Vojtech Vitek (golang.cz)
Vojtech Vitek (golang.cz)
Hi, I'd like to import this github.com/ichinaski/pxl into my Go project. Mind changing the structure of this project, so people can import it? We'd basically need to separate `func main()`...
If we had type for each DB error instead of variable instance (https://github.com/upper/db/blob/96bcc81a2d529a2df50378a7a35fd9cf8b59865a/error.go#L29-L53), we could store the actual message coming form the database inside of the error. This can be...
Proposal: ```diff - import db "upper.io/db.v3" + import "github.com/upper/db ``` 1. Drop the version from the import path. The versioning can be handled with Dependency Managers (https://github.com/golang/dep or similar). 2....
Feature request for the query builder: ``` go res1 := col.Find(db.Cond{"name": "Max"}).Limit(10).Sort("-last_name") res2 := col.Find(db.Cond{"name": "Rex", "age >": "21"}).Limit(15).Sort("-last_name") err := db.Union(res1, res2).All(&people) ``` Related: #105
```diff - OK 10000000000819_uuid.sql + OK 10000000000819_uuid.sql (took 32s) goose: no migrations to run. current version: 10000000000819 ```
## Summary Hi, we're receiving `http.ErrAbortHandler` error in Sentry. However, this net/http sentinel error is [defined as follows](https://pkg.go.dev/net/http#pkg-variables): > var ErrAbortHandler = [errors](https://pkg.go.dev/errors).[New](https://pkg.go.dev/errors#New)("net/http: abort Handler") > > ErrAbortHandler is a...
Let's say I have 3 stores: Memstore, BoltDB (async) and s3 (async). given `chain.Put(ctx, key, data)` - Memstore succeeds - BoltDB fails - s3 succeeds What should we do? Should...
All of the stores clients should use ctxhttp or something.