I am using apache jena fuseki server to load the data in a .ttl format and then querying the data.But the problem is i am not able to serve multiple data simultaneously.
I am starting the server using the following command.
./fuseki-server --update --mem /ds
The server version i am using is 1.1.1
/home/user/jena-fuseki-1.1.1/./s-put http://192.168.1.38:3030/ds/data **default** /home/user/data.ttl
I was thinking like if we change the default option in s-put command,is there any other options to serve concurrent data as separate instances. ./s-put http://192.168.1.38:3030/ds/data default /home/user/data.ttl
I am having a rest api from which multiple users can load the data and do SPARQL queries on top of it.But when each time a new user loads the data the server gets the new data and the previous data is gone.
I want each user to have his own data to be maintained by the server.Is there some mistake in the way i am loading data ?