Style: comment unused code

This commit is contained in:
秋のかえで 2021-04-08 23:19:43 +08:00
parent 8a7cd65fc2
commit 9721ff7a56
No known key found for this signature in database
GPG Key ID: C687746B27587C0D

View File

@ -36,7 +36,7 @@ func LoadIPFile(file, code string) ([]*CIDR, error) {
}
defer runtime.GC() // or debug.FreeOSMemory()
return geoipdat.Cidr, nil // do not cache geoip
IPCache[index] = &geoipdat
// IPCache[index] = &geoipdat
}
return IPCache[index].Cidr, nil
}
@ -53,7 +53,7 @@ func loadFile(file string) ([]byte, error) {
// Do not cache file, may save RAM when there
// are many files, but consume CPU each time.
return bs, nil
FileCache[file] = bs
// FileCache[file] = bs
}
return FileCache[file], nil
}