1.0.0 • Published 8 years ago

persisted_formula v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

Persisted formula

Store and load information from rdflib.js formulae (stores/graphs) to indexedDB storage in the browser.

Usage

Persisting data:

import { persist } from 'persisted_formula'
const store = $rdf.graph()
// Write some data into the store
persist(store)
// The data is now stored in indexedDB

Loading data:

import { load } from 'persisted_formula'
const store = $rdf.Graph()
load(store)
// The data is now loaded into the store (if any data was present)

Accessing the raw API:

import PersistentQuadBackend from 'persisted_formula'

const toBeRemoved = [/* Some quads that need deletion */]
new PersistentQuadBackend()
  .connect()
  .then(backend => {
    toBeRemoved.forEach(q => backend.remove(q))
  })