Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // WorkerPoolSize is the size of goroutine pool used to query for routes WorkerPoolSize = 3 // MySQLGetDelay is how long retrieving a customer record takes. // Using large value mostly because I cannot click the button fast enough to cause a queue. MySQLGetDelay = 300 * time.Millisecond // MySQLGetDelayStdDev is standard deviation MySQLGetDelayStdDev = MySQLGetDelay / 10 // RouteWorkerPoolSize is the size of the worker pool used to query `route` service RouteWorkerPoolSize = 3 // RedisFindDelay is how long finding closest drivers takes RedisFindDelay = 20 * time.Millisecond // RedisFindDelayStdDev is standard deviation RedisFindDelayStdDev = RedisFindDelay / 4 // RedisGetDelay is how long retrieving a driver record takes RedisGetDelay = 10 * time.Millisecond // RedisGetDelayStdDev is standard deviation RedisGetDelayStdDev = RedisGetDelay / 4 // RouteCalcDelay is how long a route calculation takes RouteCalcDelay = 50 * time.Millisecond // RouteCalcDelayStdDev is standard deviation RouteCalcDelayStdDev = RouteCalcDelay / 4 )
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.