Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Delete connected entities from collection quickly and consistently #18

Open
amivanoff opened this issue Apr 2, 2021 · 1 comment
Open
Assignees

Comments

@amivanoff
Copy link
Member

  • Too long DELETE query on the server in one-by-one deletion (1,5 seconds each) creates races with following SELECT
    • In did not took so long earlier, maybe inferencers are the cause
    • Maybe transactions could help with server-client state sync consistency
  • Ability to delete connected entities
  • Ability to delete references to the deleted entities
@amivanoff amivanoff self-assigned this Apr 2, 2021
@amivanoff
Copy link
Member Author

Consistent deletion of the one entity with references to it from other entities

DELETE {
  <iri> ?p01 ?o01.
  ?s02 ?p02 <iri>.
}
WHERE {
  {
    <iri> ?p01 ?o01.
  }
  UNION
  {
    ?s02 ?p02 <iri>
  }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant