ontoportal-lirmm / goo

Graph Oriented Objects (GOO) for Ruby. A RDF/SPARQL based ORM.
http://ncbo.github.io/goo/
Other
0 stars 4 forks source link

Fix: Invalidating cache after insertion of a new element #60

Closed syphax-bouazzouni closed 4 months ago

syphax-bouazzouni commented 4 months ago

Require

Before that we used Goo.sparql_update_client.insert_data(graph_insert, graph: graph) which invalidate the cache but did not work for Virtuoso.

So this PR reverted back to use Goo.sparql_update_client.insert_data but in the same time make it work for Virtuoso.

Changes