Show HN: Mongita is to MongoDB as SQLite is to SQL
1–10 of 95 posts
Re: Show HN: Mongita is to MongoDB as SQLite is to SQL
#2This would be super nice to have when developing mobile apps. I’ve used sqllite when developing with react-native, but can see myself using a mongita type solution.
Re: Show HN: Mongita is to MongoDB as SQLite is to SQL
#3This would be super nice to have when developing mobile apps. I’ve used sqllite when developing with react-native, but can see myself using a mongita type solution.
It’s written in python so I assume that’s a no go.
Re: Show HN: Mongita is to MongoDB as SQLite is to SQL
#4In memory, how does perf compare to https://github.com/nodkz/mongodb-memory-server ?
Re: Show HN: Mongita is to MongoDB as SQLite is to SQL
#5There used to be something similar called NeDB
Re: Show HN: Mongita is to MongoDB as SQLite is to SQL
#6There used to be something similar called NeDB
And PStore for Ruby and trivialDB for Javascript
Re: Show HN: Mongita is to MongoDB as SQLite is to SQL
#7> Mongita is to MongoDB as SQLite is to SQL
it really isn't if it's written in python
Re: Show HN: Mongita is to MongoDB as SQLite is to SQL
#8> Mongita is to MongoDB as SQLite is to SQL it really isn't if it's written in python
I don't think it is whatever it's written in, because I can't imagine what it would mean? Unless there's a DBMS implementation called simply 'SQL' that I'm not aware of? (Or if Mongo calls its query language 'MongoDB'?)
Seems like '.. to (My|Postgre)SQL' would be a better fit?
Re: Show HN: Mongita is to MongoDB as SQLite is to SQL
#9> Mongita is to MongoDB as SQLite is to SQL it really isn't if it's written in python
Yeah, a big benefit of SQLite is the fact that it's embeddable, and easily can be communicated with from any language that can FFI out to C (which is to say, essentially any language)
This... Loses that.
Re: Show HN: Mongita is to MongoDB as SQLite is to SQL
#10So, by their own benchmarks, unless you are doing totally random lookups of documents by identifier--and mostly reads, with very few writes--you should absolutely use SQLite with JSON values, which absolutely destroy this project in performance?...