From 49ddf1af831493cb34a44c35781f3323916314af Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 12 Mar 2008 00:11:17 +0000 Subject: Sorta workingish chicken scheme bindings. git-svn-id: http://svn.drobilla.net/lad/slv2@1164 a436a847-0d15-0410-975c-d299462d15a1 --- src/world.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/world.c') diff --git a/src/world.c b/src/world.c index 18eec53..9356579 100644 --- a/src/world.c +++ b/src/world.c @@ -43,6 +43,8 @@ slv2_world_new() librdf_world_open(world->world); + // Testing shows hashes to be faster here + //world->storage = librdf_new_storage(world->world, "memory", NULL, NULL); world->storage = librdf_new_storage(world->world, "hashes", NULL, "hash-type='memory'"); if (!world->storage) @@ -97,6 +99,8 @@ slv2_world_new_using_rdf_world(librdf_world* rdf_world) world->local_world = false; + // Testing shows hashes to be faster here + //world->storage = librdf_new_storage(world->world, "memory", NULL, NULL); world->storage = librdf_new_storage(world->world, "hashes", NULL, "hash-type='memory'"); if (!world->storage) -- cgit v1.2.1