summaryrefslogtreecommitdiffstats
path: root/src/storage/phrase_large_table3_bdb.h
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2019-01-17 15:20:32 +0800
committerPeng Wu <alexepico@gmail.com>2019-01-17 15:20:32 +0800
commit35adc8e4fc41dd8c989dc16760e179b63637203a (patch)
tree992e26addaa7717bdb2cf3751bf874c6c146cc50 /src/storage/phrase_large_table3_bdb.h
parentb825ba207cec09f53f100fa48c177c1fddf9949b (diff)
downloadlibpinyin-35adc8e4fc41dd8c989dc16760e179b63637203a.tar.gz
libpinyin-35adc8e4fc41dd8c989dc16760e179b63637203a.tar.xz
libpinyin-35adc8e4fc41dd8c989dc16760e179b63637203a.zip
Revert "not use in-memory DBM in src/storage"
This reverts commit 5607752c2b989849923676f4a925e5315a3303d4.
Diffstat (limited to 'src/storage/phrase_large_table3_bdb.h')
-rw-r--r--src/storage/phrase_large_table3_bdb.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/storage/phrase_large_table3_bdb.h b/src/storage/phrase_large_table3_bdb.h
index 3ca6f20..73f7625 100644
--- a/src/storage/phrase_large_table3_bdb.h
+++ b/src/storage/phrase_large_table3_bdb.h
@@ -47,19 +47,11 @@ public:
/* attach method */
bool attach(const char * dbfile, guint32 flags);
- bool sync() {
- assert(NULL != m_db);
- m_db->sync(m_db, 0);
- return true;
- }
-
-#if 0
/* load/store method */
/* use in-memory DBM here, for better performance. */
bool load_db(const char * filename);
bool store_db(const char * new_filename);
-#endif
bool load_text(FILE * infile);