- Apr 12, 2019
-
-
Péter Szilágyi authored
-
- Apr 05, 2019
-
-
Péter Szilágyi authored
-
- Mar 26, 2019
-
-
Martin Holst Swende authored
This PR is a more advanced form of the dirty-to-clean cacher (#18995), where we reuse previous database write batches as datasets to uncache, saving a dirty-trie-iteration and a dirty-trie-rlp-reencoding per block.
-
- Mar 22, 2019
-
-
Martin Holst Swende authored
* trie: disable fnv64a hashing of hashes for bigcache * trie/database: add very important period
-
- Mar 14, 2019
-
-
Péter Szilágyi authored
* cmd, core, eth, trie: get rid of trie cache generations * core, trie: get rid of remainder of cache gen boilerplate
-
- Mar 12, 2019
-
-
Péter Szilágyi authored
-
- Mar 06, 2019
-
-
Péter Szilágyi authored
-
- Feb 19, 2019
-
-
Matthew Halpern authored
-
- Feb 16, 2019
-
-
Martin Holst Swende authored
-
- Feb 04, 2019
-
-
HackyMiner authored
-
- Jan 04, 2019
-
-
Dave McGregor authored
-
- Nov 22, 2018
-
-
Martin Holst Swende authored
trie/database: fix overflow in parent tracking
-
- Nov 16, 2018
-
-
Péter Szilágyi authored
-
Łukasz Kurowski authored
* trie: return hasher to pool * trie: minor code formatting fix
-
- Nov 15, 2018
-
-
Péter Szilágyi authored
-
- Oct 08, 2018
-
-
Péter Szilágyi authored
-
- Sep 03, 2018
-
-
Wenbiao Zheng authored
-
- Aug 24, 2018
-
-
Mymskmkt authored
-
- Aug 09, 2018
-
-
Péter Szilágyi authored
-
- Aug 08, 2018
-
-
Mymskmkt authored
-
- Aug 07, 2018
-
-
Oleg Kovalov authored
-
- Jul 30, 2018
-
-
Péter Szilágyi authored
-
- Jul 02, 2018
-
-
Péter Szilágyi authored
-
- Jun 21, 2018
-
-
Péter Szilágyi authored
The current trie memory database/cache that we do pruning on stores trie nodes as binary rlp encoded blobs, and also stores the node relationships/references for GC purposes. However, most of the trie nodes (everything apart from a value node) is in essence just a collection of references. This PR switches out the RLP encoded trie blobs with the collapsed-but-not-serialized trie nodes. This permits most of the references to be recovered from within the node data structure, avoiding the need to track them a second time (expensive memory wise).
-
- Jun 11, 2018
-
-
Péter Szilágyi authored
-
- Jun 07, 2018
-
-
Sarlor authored
optimization code
-
- Jun 05, 2018
-
-
Felix Lange authored
* trie: reduce hasher allocations name old time/op new time/op delta Hash-8 4.05µs ±12% 3.56µs ± 9% -12.13% (p=0.000 n=20+19) name old alloc/op new alloc/op delta Hash-8 1.30kB ± 0% 0.66kB ± 0% -49.15% (p=0.000 n=20+20) name old allocs/op new allocs/op delta Hash-8 11.0 ± 0% 8.0 ± 0% -27.27% (p=0.000 n=20+20) * trie: bump initial buffer cap in hasher
-
- Jun 04, 2018
-
-
Péter Szilágyi authored
* core, eth, trie: streaming GC for the trie cache * trie: track memcache statistics
-
- May 29, 2018
-
-
Wenbiao Zheng authored
This removes a golint warning: type name will be used as trie.TrieSync by other packages, and that stutters; consider calling this Sync. In hexToKeybytes len(hex) is even and (even+1)/2 == even/2, remove the +1.
-
- May 24, 2018
-
-
Wenbiao Zheng authored
-
Péter Szilágyi authored
-
- May 23, 2018
-
-
Péter Szilágyi authored
-
- May 21, 2018
-
-
kiel barry authored
-
- May 09, 2018
-
-
Gary Rong authored
* all: get rid of error when create mdb * core: clean up variables definition * all: inline mdb definition
-
- May 02, 2018
-
-
Eli authored
-
- Apr 27, 2018
-
-
xincaosu authored
-
- Apr 09, 2018
-
-
Gary Rong authored
-
- Feb 23, 2018
-
-
Anton Evangelatov authored
* go-metrics: fork library and introduce ResettingTimer and InfluxDB reporter. * vendor: change nonsense/go-metrics to ethersphere/go-metrics * go-metrics: add tests. move ResettingTimer logic from reporter to type. * all, metrics: pull in metrics package in go-ethereum * metrics/test: make sure metrics are enabled for tests * metrics: apply gosimple rules * metrics/exp, internal/debug: init expvar endpoint when starting pprof server * internal/debug: tiny comment formatting fix
-
- Feb 14, 2018
-
-
Felix Lange authored
-
- Feb 05, 2018
-
-
Péter Szilágyi authored
This commit reduces database I/O by not writing every state trie to disk.
-