| OLD | NEW |
| 1 // Copyright 2016 The LUCI Authors. All rights reserved. | 1 // Copyright 2016 The LUCI Authors. All rights reserved. |
| 2 // Use of this source code is governed under the Apache License, Version 2.0 | 2 // Use of this source code is governed under the Apache License, Version 2.0 |
| 3 // that can be found in the LICENSE file. | 3 // that can be found in the LICENSE file. |
| 4 | 4 |
| 5 package coordinator | 5 package coordinator |
| 6 | 6 |
| 7 import ( | 7 import ( |
| 8 "sync" | 8 "sync" |
| 9 "time" | 9 "time" |
| 10 | 10 |
| 11 "github.com/luci/luci-go/common/clock" | 11 "github.com/luci/luci-go/common/clock" |
| 12 "github.com/luci/luci-go/common/data/caching/lru" | 12 "github.com/luci/luci-go/common/data/caching/lru" |
| 13 "github.com/luci/luci-go/common/errors" | 13 "github.com/luci/luci-go/common/errors" |
| 14 log "github.com/luci/luci-go/common/logging" | 14 log "github.com/luci/luci-go/common/logging" |
| 15 "github.com/luci/luci-go/common/sync/promise" | 15 "github.com/luci/luci-go/common/sync/promise" |
| 16 "github.com/luci/luci-go/common/tsmon/field" | 16 "github.com/luci/luci-go/common/tsmon/field" |
| 17 "github.com/luci/luci-go/common/tsmon/metric" | 17 "github.com/luci/luci-go/common/tsmon/metric" |
| 18 "github.com/luci/luci-go/logdog/common/types" | 18 "github.com/luci/luci-go/logdog/common/types" |
| 19 "github.com/luci/luci-go/luci_config/common/cfgtypes" | 19 "github.com/luci/luci-go/luci_config/common/cfgtypes" |
| 20 |
| 20 "golang.org/x/net/context" | 21 "golang.org/x/net/context" |
| 21 ) | 22 ) |
| 22 | 23 |
| 23 const ( | 24 const ( |
| 24 // DefaultSize is the default (maximum) size of the LRU cache. | 25 // DefaultSize is the default (maximum) size of the LRU cache. |
| 25 DefaultSize = 1024 * 1024 | 26 DefaultSize = 1024 * 1024 |
| 26 | 27 |
| 27 // DefaultExpiration is the default expiration value. | 28 // DefaultExpiration is the default expiration value. |
| 28 DefaultExpiration = 10 * time.Minute | 29 DefaultExpiration = 10 * time.Minute |
| 29 ) | 30 ) |
| (...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 ce.terminalIndex = tidx | 296 ce.terminalIndex = tidx |
| 296 } | 297 } |
| 297 }) | 298 }) |
| 298 } | 299 } |
| 299 | 300 |
| 300 func (ce *cacheEntry) withLock(f func()) { | 301 func (ce *cacheEntry) withLock(f func()) { |
| 301 ce.Lock() | 302 ce.Lock() |
| 302 defer ce.Unlock() | 303 defer ce.Unlock() |
| 303 f() | 304 f() |
| 304 } | 305 } |
| OLD | NEW |