Does Fuseki support conditional GSP requests? #3011
Answered
by
rvesse
namedgraph
asked this question in
Q&A
|
Conditional requests meaning support for |
Answered by
rvesse
Feb 20, 2025
Replies: 3 comments 5 replies
|
No Mainly because the underlying storage doesn't typically have any way of easily determining whether or not a graph has changed other than loading the whole graph at which point you've already done 90% of the work (bar serialising the graph back to the client) Such a feature could conceivably be implemented with a change aware wrapper DatasetGraph implementation, and by extending request handling |
1 reply
Answer selected by
afs
|
What about SPARQL Updates? Patch changes?
Won't the epoch timestamp and the eTag both have to be persistent? |
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No
Mainly because the underlying storage doesn't typically have any way of easily determining whether or not a graph has changed other than loading the whole graph at which point you've already done 90% of the work (bar serialising the graph back to the client)
Such a feature could conceivably be implemented with a change aware wrapper DatasetGraph implementation, and by extending request handling