András Belicza
András Belicza
There are no planned work on Gowut.
I do not plan to work on Gowut. The project is open source, you're free to do whatever the [LICENSE](https://github.com/icza/gowut/blob/master/LICENSE) allows.
There is locking implemented already, which should prevent concurrent modification. The current locking is done at session level. Note that "sessionless" clients also have a shared, public session, so if...
I know my parser is not perfect, and cannot handle all replays. It doesn't crash your runtime though, parsing replays is protected, it will only return an error. Will look...
I'm not a layer, I'm not sure exactly what the license demands. How would a fix look like? To me it is enough to indicate the code originates from https://github.com/icza/gox.
It looks including it in the header of every source file is not required as long as the complete license is included in the top of the source tree in...
`NOTICE` file is optional for non-ASF projects. I will extend the `README` about the way of contributions.
Can you provide a minimal, complete example that reproduces the issue you're having? Showing data models, example documents in MongoDB, how you query documents, what indices you have etc.
The total number of documents matching the query can only be determined by a separate query, and the current page count cannot be acquired from the cursor. The cursor only...
For example, let's say you fetch the first page: total := /* query total count, something like c.Find(query).Count() */ q := /* ... */ // q is a MinQuery newCursor,...