Browse Source

handle nil chunk cache

pull/1273/head
Chris Lu 5 years ago
parent
commit
b9b7da905e
  1. 10
      weed/util/chunk_cache/chunk_cache.go

10
weed/util/chunk_cache/chunk_cache.go

@ -47,6 +47,10 @@ func NewChunkCache(maxEntries int64, dir string, diskSizeMB int64, segmentCount
} }
func (c *ChunkCache) GetChunk(fileId string) (data []byte) { func (c *ChunkCache) GetChunk(fileId string) (data []byte) {
if c == nil {
return
}
c.RLock() c.RLock()
defer c.RUnlock() defer c.RUnlock()
@ -76,6 +80,9 @@ func (c *ChunkCache) GetChunk(fileId string) (data []byte) {
} }
func (c *ChunkCache) SetChunk(fileId string, data []byte) { func (c *ChunkCache) SetChunk(fileId string, data []byte) {
if c == nil {
return
}
c.Lock() c.Lock()
defer c.Unlock() defer c.Unlock()
@ -107,6 +114,9 @@ func (c *ChunkCache) SetChunk(fileId string, data []byte) {
} }
func (c *ChunkCache) Shutdown() { func (c *ChunkCache) Shutdown() {
if c == nil {
return
}
c.Lock() c.Lock()
defer c.Unlock() defer c.Unlock()
for _, diskCache := range c.diskCaches { for _, diskCache := range c.diskCaches {

Loading…
Cancel
Save