diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-02-19 20:29:19 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2016-03-09 16:33:39 +0800 |
commit | e90958cd29a228b051faeaa25d66e053cf9d2228 (patch) | |
tree | dd7dd52d31628375ead8a06e681441102faf9037 /node | |
parent | 05c86c2c9fa14ea03fdc5d0cd77cdecc34e4f164 (diff) | |
download | dexon-e90958cd29a228b051faeaa25d66e053cf9d2228.tar.gz dexon-e90958cd29a228b051faeaa25d66e053cf9d2228.tar.zst dexon-e90958cd29a228b051faeaa25d66e053cf9d2228.zip |
cmd, eth, ethdb, node: prioritise chaindata for resources, bump cache
Diffstat (limited to 'node')
-rw-r--r-- | node/service.go | 4 | ||||
-rw-r--r-- | node/service_test.go | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/node/service.go b/node/service.go index 26e9f1624..77b2ddc92 100644 --- a/node/service.go +++ b/node/service.go @@ -38,11 +38,11 @@ type ServiceContext struct { // OpenDatabase opens an existing database with the given name (or creates one // if no previous can be found) from within the node's data directory. If the // node is an ephemeral one, a memory database is returned. -func (ctx *ServiceContext) OpenDatabase(name string, cache int) (ethdb.Database, error) { +func (ctx *ServiceContext) OpenDatabase(name string, cache int, handles int) (ethdb.Database, error) { if ctx.datadir == "" { return ethdb.NewMemDatabase() } - return ethdb.NewLDBDatabase(filepath.Join(ctx.datadir, name), cache) + return ethdb.NewLDBDatabase(filepath.Join(ctx.datadir, name), cache, handles) } // Service retrieves a currently running service registered of a specific type. diff --git a/node/service_test.go b/node/service_test.go index cfe7fe5dc..7bd94a52e 100644 --- a/node/service_test.go +++ b/node/service_test.go @@ -39,7 +39,7 @@ func TestContextDatabases(t *testing.T) { } // Request the opening/creation of a database and ensure it persists to disk ctx := &ServiceContext{datadir: dir} - db, err := ctx.OpenDatabase("persistent", 0) + db, err := ctx.OpenDatabase("persistent", 0, 0) if err != nil { t.Fatalf("failed to open persistent database: %v", err) } @@ -50,7 +50,7 @@ func TestContextDatabases(t *testing.T) { } // Request th opening/creation of an ephemeral database and ensure it's not persisted ctx = &ServiceContext{datadir: ""} - db, err = ctx.OpenDatabase("ephemeral", 0) + db, err = ctx.OpenDatabase("ephemeral", 0, 0) if err != nil { t.Fatalf("failed to open ephemeral database: %v", err) } |