diff options
| author | Gunnar Aastrand Grimnes <gromgull@gmail.com> | 2011-08-20 13:12:34 +0200 |
|---|---|---|
| committer | Gunnar Aastrand Grimnes <gromgull@gmail.com> | 2011-08-20 13:12:34 +0200 |
| commit | b5c8965fa973e609bd6d971f28d74c2d09ddf09e (patch) | |
| tree | ab54cb13c3bb8011ad34e757dfcfa21e7b369f25 /test/test_bdboptimized.py | |
| parent | f430629e84f7ebb197c44646442c841272bbf15e (diff) | |
| download | rdflib-bdbOptimized.tar.gz | |
restarted BDBOptimized store - unfortunately, benchmarks show that it is much slower than the normal sleepcat store in every way - so I guess we never merge this :)bdbOptimized
Diffstat (limited to 'test/test_bdboptimized.py')
| -rw-r--r-- | test/test_bdboptimized.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/test_bdboptimized.py b/test/test_bdboptimized.py new file mode 100644 index 00000000..2f01dc00 --- /dev/null +++ b/test/test_bdboptimized.py @@ -0,0 +1,17 @@ +import logging + +_logger = logging.getLogger(__name__) + +from test import test_graph +from test import test_context + + +class BDBOptimizedGraphTestCase(test_graph.GraphTestCase): + store_name = "BDBOptimized" + non_core = True + bsddb = True + +class BDBOptimizedStoreTestCase(test_context.ContextTestCase): + store = "BDBOptimized" + non_core = True + bsddb = True |
