-
Notifications
You must be signed in to change notification settings - Fork 405
remove glog dependency #293
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
lol, just saw: #292 |
Can we please merge this. Glog spins off a go routine that cannot be closed on it's |
Ditto. @mangalaman93 |
Glog is not intended for use outside Google:
Why is this PR still unmerged?? |
@mholt , I maintain a fork of ristretto. I have this and other fixes, if you want to use that. I know Datadog uses my fork. |
@manishrjain Thanks; since this is a dependency of a dependency of a ... (x4) ... I suppose I will use a |
@mholt will it be possible for you rebase it on latest |
@mangalaman93 Thanks; this isn't my PR though, @jhawk28 would have to do that. |
* Introduce SetIfPresent and move metrics out to new file. * Introduce ShouldUpdate, to allow Dgraph to only update the cache with a higher version entry. * Remove interfaces. * Rename structs for clarity.
* *: fix data race in the cache Signed-off-by: Weizhen Wang <wangweizhen@pingcap.com> * fix
update go mod deps
I did a rebase but it didn't appear to work correctly. I would recommend just creating another PR. |
submitted a new pr #350 |
updated go mod deps
glog adds global flags so it is not a good library (adding to an existing program causes a panic if a flag name conflicts)
This change is