aboutsummaryrefslogtreecommitdiffstats
path: root/dex/cache.go
diff options
context:
space:
mode:
authorJimmy Hu <jimmy.hu@dexon.org>2018-12-11 18:47:49 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 21:32:54 +0800
commit877339db1c966b1ec00dc94327a8aa8d00383234 (patch)
treed9bfd962a9503cb42736666aa6d7fbc23834e7fc /dex/cache.go
parent705c8302ee963467395dc288538c70b35cfdf2c1 (diff)
downloaddexon-877339db1c966b1ec00dc94327a8aa8d00383234.tar
dexon-877339db1c966b1ec00dc94327a8aa8d00383234.tar.gz
dexon-877339db1c966b1ec00dc94327a8aa8d00383234.tar.bz2
dexon-877339db1c966b1ec00dc94327a8aa8d00383234.tar.lz
dexon-877339db1c966b1ec00dc94327a8aa8d00383234.tar.xz
dexon-877339db1c966b1ec00dc94327a8aa8d00383234.tar.zst
dexon-877339db1c966b1ec00dc94327a8aa8d00383234.zip
dex: Pull blocks from blockdb if cache miss (#84)
Diffstat (limited to 'dex/cache.go')
-rw-r--r--dex/cache.go13
1 files changed, 12 insertions, 1 deletions
diff --git a/dex/cache.go b/dex/cache.go
index 96ba2d765..c95038e1d 100644
--- a/dex/cache.go
+++ b/dex/cache.go
@@ -21,6 +21,7 @@ import (
"sync"
coreCommon "github.com/dexon-foundation/dexon-consensus/common"
+ coreBlockdb "github.com/dexon-foundation/dexon-consensus/core/blockdb"
coreTypes "github.com/dexon-foundation/dexon-consensus/core/types"
)
@@ -47,14 +48,16 @@ type cache struct {
blockCache map[coreCommon.Hash]*coreTypes.Block
voteCache map[coreTypes.Position]map[voteKey]*coreTypes.Vote
votePosition []coreTypes.Position
+ db coreBlockdb.BlockDatabase
voteSize int
size int
}
-func newCache(size int) *cache {
+func newCache(size int, db coreBlockdb.BlockDatabase) *cache {
return &cache{
blockCache: make(map[coreCommon.Hash]*coreTypes.Block),
voteCache: make(map[coreTypes.Position]map[voteKey]*coreTypes.Vote),
+ db: db,
size: size,
}
}
@@ -111,6 +114,14 @@ func (c *cache) blocks(hashes coreCommon.Hashes) []*coreTypes.Block {
for _, hash := range hashes {
if block, exist := c.blockCache[hash]; exist {
cacheBlocks = append(cacheBlocks, block)
+ } else {
+ block, err := c.db.Get(hash)
+ if err != nil {
+ continue
+ }
+ // Blocks request from the cache do not need the finalization info.
+ block.Finalization = coreTypes.FinalizationResult{}
+ cacheBlocks = append(cacheBlocks, &block)
}
}
return cacheBlocks