a simple url shortening service, in the same vein as bit.ly and tinyurl.com, written in Go and using BoltDB as a backend
Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- package bbolt
-
- // maxMapSize represents the largest mmap size supported by Bolt.
- const maxMapSize = 0x7FFFFFFF // 2GB
-
- // maxAllocSize is the size used when creating array pointers.
- const maxAllocSize = 0xFFFFFFF
-
- // Are unaligned load/stores broken on this arch?
- var brokenUnaligned = false
|