-
Notifications
You must be signed in to change notification settings - Fork 13
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
NoSQL database interface #140
Comments
The main thing that TidierDB does is generate the SQL query - it doesnt actually handle much of the backend stuff other than handling slight variations in the SQL generation. Do NoSQL database queries look anything like SQL queries? From quick googling it looks like NoSQL queries are JavaScript converted into web API calls? |
I'm unfamiliar with NoSQL, so i used GPT4 to spin up quick comparison in syntax below. I think (assuming this is accurate) retrofitting the existing TidierDB macros to work for NoSQL might be tricky. TidierDB uses interchangeable parsers to generate the different sqls, but there is still some generation that happens in macro for the parts that are similar across them all. I don't think it would be impossible
vs
|
Took a closer look through the TidierDB code - I'm thinking that integrating the two will be difficult. Firebase essentially stores "JSON objects" rather than tables like a relational database would, so I'm thinking the package will be closely linked with the new TidierIteration package. I'm going to start experimenting with some stuff on a personal repo, and I can transfer it over if/when it becomes useful |
I have to work with NoSQL databases pretty often (specifically Firestore), and I would love to have a better julia interface to do so. I don't know how much of TidierDB can be translated over since the data storage model is so different from the database backends that it currently supports.
If I can make something like this, should it be part of TidierDB (since it still is a database)? Or should it be its own package?
The text was updated successfully, but these errors were encountered: