HN user

u14408885

36 karma
Posts0
Comments9
View on HN
No posts found.

Thanks for that. 'expvar' looks like a great hidden gem for go development. Unfortunately most of our services aren't written in Go so we might have to write our own if there isn't a handy library we could write bindings for.

The author talks about Graphite and Prometheus as instrumentation systems but they're for collecting data. What do people recommend as a linkable library for collecting metrics in the service process? (before it is collected). A quick google gave me 'go-metrics' and 'dropwizard metrics' but the code I'm working on will require linking with a native C library.

GoQt 11 years ago

Whenever I hear of a golang binding to a library implemented in C++ I'm always interested to see how they map the class hierarchy to golang's type model which doesn't have traditional inheritence.

Does QT's class hierarchy map cleanly to Go? Is it just interfaces everywhere?

(I'm not trying to start a language war, just genuinely curious.)

Counting Objects 11 years ago

Could this technique be used to optimise graph traversal in a postgresql table? Or are recursive queries still the way to go?