Francis Stephens
Francis Stephens
There are two columns whose meaning are unclear to me. Cover - this is not a percent value, so a description would help to interpret this. Restarts - it’s unclear...
Currently values in the `padded` package isolate an inner field by putting enough data before and after to separate that field from any other memory locations. However, this only works...
Sometimes Read comes above Write and sometimes the other way around. Read should always be above write.
Currently the three types of queue each use a different pair of acquireRead/Write methods. The one used by PointerQ is currently attached to commonQ. This should be moved to PointerQ...
Many of the queues have the option of returning a nil slice explicitly or returning an empty slice instead. I would prefer to return an empty slice, although nils are...
Currently when RMQ has established a connection it will send a heartbeat, which sets a value with a 1 minute TTL, every second. This tells the queue cleaner that this...
### Subject of the issue Go binaries are installed to $GOBIN if that env variable exists. Having $GOBIN set and pointing to a different location than $GOPATH/bin will cause `make...
This demonstrates how to read from memory locations using operand.Mem. I think this example is valuable because I had (arbitrarily) chosen looking up a slice/string index value in assembly as...