erigon-pulse/ethdb/memory_database.go
Alex Sharov 5ef9a5a9f0
mdbx: switch CI to mdbx, fix SeekExact, print slow/big transactions info (#1475)
DEBUG_BIG_RO_TX_KB - print logs with info about large read-only transactions
DEBUG_BIG_RW_TX_KB - print logs with info about large read-write transactions
DEBUG_SLOW_COMMIT_MS - print logs with commit timing details if commit is slower than this threshold
2021-02-09 09:31:37 +07:00

33 lines
1.1 KiB
Go

// Copyright 2014 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The go-ethereum library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
package ethdb
import (
"github.com/ledgerwatch/turbo-geth/common/debug"
)
func NewMemDatabase() *ObjectDatabase {
switch debug.TestDB() {
case "lmdb":
return NewObjectDatabase(NewLMDB().InMem().MustOpen())
case "mdbx": //nolint:goconst
return NewObjectDatabase(NewMDBX().InMem().MustOpen())
default:
return NewObjectDatabase(NewMDBX().InMem().MustOpen())
}
}