#golang
8 posts · filter on the home page
- TIL: Go Response Body MUST be closed, even if you don’t read itSearching online, the overwhelming consensus was that there must be a unclosed http.Response Body. Now, I was under the impression that you only need to close the response body, if you read it. If you didn't read it, then there's no need…
- How to Parse an EVM Smart Contract in GoI was recently looking for a working solution to parsing Smart Contracts in the EVM chains. I couldn't find a simple to follow, working solution based on Go. This post aims to fill that gap.
- Badger: Fast key-value database written in GoBadger is a fast key-value database, written to provide a Go native alternative to RocksDB. Typical LSM tree based KV DBs are fast in writes, but slower in reads. Badger provides better write throughput than RocksDB while maintaining at…
- Dgraph Talk at Gophercon Singapore 2017Dgraph is a native and distributed graph database written entirely in Go. Efficient distributed joins is a hard problem and Dgraph tackles it head on.