Skip to content

Instantly share code, notes, and snippets.

@scorphus
Created August 11, 2014 20:55
Show Gist options
  • Save scorphus/df552e09ed38270e6c64 to your computer and use it in GitHub Desktop.
Save scorphus/df552e09ed38270e6c64 to your computer and use it in GitHub Desktop.
maxmemory.go
var maxMemory int
func maxMemoryValue() int {
if maxMemory <= 0 {
maxMemory, _ = config.GetInt("api:request:maxMemory")
}
return maxMemory
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment