Overhaul the database so the connection don't close after every command#1879
Draft
Denellyne wants to merge 11 commits intoOnionUI:mainfrom
Draft
Overhaul the database so the connection don't close after every command#1879Denellyne wants to merge 11 commits intoOnionUI:mainfrom
Denellyne wants to merge 11 commits intoOnionUI:mainfrom
Conversation
Splits the connection in two, one writer and one reader and all actions performed by the writer are atomic, as in, are executed inside an exclusive transaction
Contributor
Author
|
I need to check this again because now that i think of it,is this actually just leaking dB connections? |
Contributor
Author
|
Yup it is. I need to fix this ! |
Contributor
|
@Denellyne, thanks for the enthusiasm you spend on this project! |
…oved to sqlmon_db.h Finished implementing most of the functionality, only left is fix paths and list all
Changed the sqlmon code a bit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Splits the connection in two, one writer and one reader and all actions performed by the writer are atomic, as in, are executed inside an exclusive transaction