Android RDF Databases

I am working on a project on mobile RDF databases for Android. Therefore, I am looking for open source databases to be included in my Android project. However, it’s hard for me to find mobile versions of existing RDF databases.

What I have found so far:

Unfortunately, I did not find mobile versions of Sesame, Virtuoso, AllegroGraph, etc.

Does anyone know some other RDF databases for Android?

+6
source share
3 answers

I'm not an Android developer, so maybe I'm missing something, but Sesame comes as a collection of maven modules , each of which is a separate Java jar file. You can select and select the jar files that you need, and as far as I know, you can use them directly on Android. I do not think that there is a need for a separate "mobile version", is there?

+2
source

I watch Triple Place .

Lightweight and flexible Triple Store for Android. It uses an indexing structure similar to the structure in Hexastore. TriplePlace uses TokyoCabinet as a permanent storage system.

You can find a brief presentation of your features here .

0
source

You can use SQLite to store RDF data and create queries for triples, but SPARQL cannot be executed. Here is a good recommendation:

http://infolab.stanford.edu/~melnik/rdf/db.html

I would also look at 4store .

-1
source

Source: https://habr.com/ru/post/913321/


All Articles