What's the best key > value extensions? We use ini++ (it's awesome) now mostly for data, and in the past we used nvo (but it's buggy).
Are there any K>V objects that I may not be aware of?
Printable View
What's the best key > value extensions? We use ini++ (it's awesome) now mostly for data, and in the past we used nvo (but it's buggy).
Are there any K>V objects that I may not be aware of?
Whats wrong with INI++?
(There are no debilitating bugs that I'm aware of)
INI++ is great, perfect. NVO is the one that is buggy. We are doing experiments and wanted to try different extensions.
It would be a huge overkill to use a database for such a simple purpose, but SQLite 3 object is my favorite data-related extension.
ValueAdd is basically a key->value store, hiding under the use of "unlimited named alterable values on every object".
Edit: And there's also an "associative array" object.
Never even tried ValueAdd before. Thank you!
If you want any new features in Ini++, now is the time to ask as I am restarting work on the updated version of it soon.
I know this isn't really an INI thing, but since you've done such a fantastic job with the encryption and wholeness of INI++ would it be possible to add an array feature?
I really like MMF's built-in array object, however it doesn't have encryption and the file sizes can become quite large with blank data. If you could add an array to INI++ (2D would suffice) it would be great!
I second that request.
However something similar can already be build.
[ArrayNameX2Y3Z0]
Value=34
[ArrayNameX1Y3Z0]
Value=23
etc.
It's just a bit of a coding mess by adding a few hundreds if not thousands of groups :D
or use:
[myArray]
X0Y0Z0=1
X1Y0Z0=0
...
will also work
but a build in array would be awesome :)
What's buggy with nvo?