rdf-ext-archive / discussions

This repo is for discussions all over the rdf-ext project
3 stars 2 forks source link

Implement SyncStore #14

Open bergos opened 8 years ago

bergos commented 8 years ago

From @bergos on June 24, 2014 22:13

Create a RDF-Ext Store implementation which caches graphs in memory or Web Storage and manually forwards changes to another RDF-Ext Store. Offline Web application features can be added very easy this way.

Copied from original issue: rdf-ext/rdf-ext#2

elf-pavlik commented 8 years ago

:+1:

would it also work for caching, indexing and offline querying data from any number of sources? most of it read only, like for example an address book with information about my friends and their friends?

bergos commented 8 years ago

We have to define a more detailed concept. I think there should be two stores:

_SyncStore_: Wraps two stores. The master can be switched online/offline. The other one is the cache store.

_BrowserStore_: Uses in memory and/or offline features of the browser to store graphs.