Evan Zhou
Evan Zhou
I don't have much time to add new features for this repo, but you can fork it and add features yourself, and send a pull request.
Not supported yet. you can try to change [VContentProvider.java#L125](https://github.com/coocood/VContentProvider/blob/master/src/org/coocood/vcontentprovider/VContentProvider.java#L125) to ``` String value = json.get(column).toString(); ``` and see if it works.
> > Because entry pointers memory is allocated separated, there is no limit for it. > > Does that mean Freecache will use more memory than i initialized in NewCache()?...
> So the reason why the expand() function occupies excessive memory is that Freecache stores too many entries. To solve this issue, the solution is to reduce the memory size...
@MakMukhi I've got another idea to reuse the buffer for stream. 1. Add a buf field in `parser` ```go type parser struct { r io.Reader header [5]byte buf []byte }...
@havoc-io snippet updated, thanks.
@MakMukhi How about just adding a CallOption to disable the buffer reuse for the extreme use case? Freeing a buffer by another goroutine adds a lot of complexity.
@MakMukhi Great! I'll send a PR in a few days.
@dfawley Can we reopen my old PR https://github.com/grpc/grpc-go/pull/1774
@manishrjain Thank you for your excellent project. We use badger in an experimental project, not used in production yet. The license is still APACHE LICENSE 2.0. Of course, you can...