0

I use fuseki server to query and update my RDF data , there are any methode do save those modifications ? should i use TDB dataset to save modifications ? If yes there are please any exepmle that it can help me ? thanks for your help

jena
  • 13
  • 2
  • Why are you not continuing with your previous question?! You got an answer there, so what's wrong with it? You should comment on this answer if something is unclear and **not open a new question with the same topic**! – UninformedUser Jul 04 '18 at 11:12
  • If you are running with an in-memory model and not TDB as backend, clearly have to write the data back to disk as any modification is done on the in-memory only. – UninformedUser Jul 04 '18 at 11:14
  • thanks you for your answer , my question it's how to write the data back to disk? it's possible to use fuseki as tdb backend or i need to use another TDB to save data ?if yes how can connect my fuseki server to the my TDB ? – jena Jul 04 '18 at 11:25
  • See the Fuseki documentation and the answer on the users@jena mailing list. NB answer come from volunteers so no need to ask again just a few hours later. – AndyS Jul 05 '18 at 11:46

1 Answers1

0

The fuseki docker container describes how to configure fuseki to persist values. Just take a look here, basically you have to store them in TDB (with not in memory option). See the documentation of the docker container how to do it.

Bierbarbar
  • 1,399
  • 15
  • 35