Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(513)

Side by Side Diff: logdog/server/collector/coordinator/cache.go

Issue 2575383002: Add server/cache support to gaeconfig. (Closed)
Patch Set: Un-collapse. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « logdog/server/collector/collector.go ('k') | logdog/server/collector/coordinator/cache_test.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « logdog/server/collector/collector.go ('k') | logdog/server/collector/coordinator/cache_test.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698