-
-
Notifications
You must be signed in to change notification settings - Fork 391
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
Is the SDB dependency necessary? #274
Comments
The
It even has the fully-featured query/scripting language - Jx9! //Declare two JSON objects and perform their union.
$a = {
a : "apple",
b : "banana"
};
$b = {
a : "pear",
b : "strawberry",
c : "cherry"
};
$c = $a + $b; // Union of $a and $b
print "Union of \$a and \$b: \n";
print $c;
$c = $b + $a; // Union of $b and $a
print "Union of \$b and \$a: \n";
print $c;
Not even an issue to buy the production-ready if it's the same license, etc. They are also seem to be active in the corresponding GitHub repository. |
On the other hand, it's not well-maintained:
|
I don't think switching sdb to something else makes sense if the new database's code is more complex than sdb. In particular since we are in the process of moving things out of sdb into C structures anyway so queries on the database would be superfluous. |
I am closing this since we pursued path on cleaning up SDB and removing unnecessary parts. Moreover, in many places we switched to use either hashtable or RzVector for better performance. |
Is your feature request related to a problem? Please describe.
SDB is not well tested. A custom database is not a good idea.
Describe the solution you'd like
Remove the use of a database in Rizin.
Describe alternatives you've considered
Use alternatives such as:
Additional context
Also relevant to #209
The text was updated successfully, but these errors were encountered: