-
Notifications
You must be signed in to change notification settings - Fork 22
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
Feature/transaction fuel #502
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks good, I appreciate the cleanup of the block references and the new api namespace.
My understanding of the major functional changes are threading the fuel tracker through the transact pipeline, the head of which is now in a new namespace. The tracker tracks how many flakes are created.
There was also the addition of the transact!
function to the top-level api, which is a nice convenience.
You're right! I forgot about that. |
This patch adds fuel tracking to transactions using the fuel-tracker infrastructure implemented previously for queries, and removes auto-generation of
[* ":rdf/type" ":rdfs/Class"]
flakes for new iris immediately used as classes in a transaction for consistency and explicitness.There is also more cleanup to remove some references to the legacy
:block
db field that's no longer used, as well as removing the obsoletefluree.db.query.schema
namespace.Closes #242