improved SQLite RDF triple store for Redland librdf http://purl.mro.name/librdf.sqlite/
Marcus Rohrmoser 0bd4c75d5d add git mirrors | 4 年 前 | |
---|---|---|
sql | 9 年 前 | |
test | 6 年 前 | |
tools | 9 年 前 | |
.gitignore | 10 年 前 | |
.travis.yml | 7 年 前 | |
CHANGELOG.md | 10 年 前 | |
LICENSE | 9 年 前 | |
README.md | 6 年 前 | |
VERSION | 9 年 前 | |
doap.rdf | 4 年 前 | |
librdf.sqlite.podspec | 9 年 前 | |
package.json | 9 年 前 | |
rdf_storage_sqlite_mro.c | 6 年 前 | |
rdf_storage_sqlite_mro.h | 9 年 前 |
Improved SQLite RDF triple storage module for librdf.
Cross platform, plain C source file. Comes with a for those targeting iOS.
Inspired by the official sqlite store.
#include "rdf_storage_sqlite_mro.h"
....
librdf_world *world = librdf_new_world();
librdf_init_storage_sqlite_mro(world); // register storage factory
....
const char* options = "new='yes', contexts='no'";
librdf_storage *newStorage = librdf_new_storage(world, LIBRDF_STORAGE_SQLITE_MRO, file_path, options);
See e.g. in (my) http://purl.mro.name/ios/librdf.objc.
test/minunit.h
, Copyright (C) 2002 John Brewer, NO WARRANTY,Quality | very good | good | normal | irrelevant |
---|---|---|---|---|
Functionality | × | |||
Reliability | × | |||
Usability | × | |||
Efficiency | × | |||
Changeability | × | |||
Portability | × |
Currently 50% code and 99% runtime saving (for 100k triples).