Show HN: Realm (YC S11), a mobile database
81–90 of 105 posts
Re: Show HN: Realm (YC S11), a mobile database
#82There's a quote from Unity CEO on the frontpage — should we expect Realm appear in Unity-land as well?
Re: Show HN: Realm (YC S11), a mobile database
#83I can't tell -- does it support upserts?
Re: Show HN: Realm (YC S11), a mobile database
#84Well I think everyone agrees it looks like something pretty interesting but I couldn't find anywhere what's the easiest way of migrating from CoreData w/sqlite to Realm? Not sure if the tradeoff of rebuilding everything would be worth it for the increase in performance.
As for the tradeoff, I guess that heavily depends on the specifics of your app. You are the only one who can judge that depending on your current app pain points, maturity and future needs.
Re: Show HN: Realm (YC S11), a mobile database
#85Earlier quoted context omitted.
Anyone using CouchbaseLite? http://developer.couchbase.com/mobile/#couchbase-lite I see a lot of comments here about wanting a CoreData replacement that's better at sync, which is exactly the use case CouchbaseLite is meant to solve.
Seriously love this product. What the Realm guys are missing is the fact that Couchbase Lite is really a replication protocol overlayed SQLite. Couchbase Lite did not always use SQLite and is in the process of switching to ForestDB as the underlying persistent store. As far as API's go, I have not seen a more intuitive design than CBL's. It almost makes too much sense. Once you get Sync Gateway setup, you have a mini…
Re: Show HN: Realm (YC S11), a mobile database
#86I have to give it a try, but how well does it work with different BaaS providers like Parse, Kinvey, Appacitive etc?
A Realm database is just a (compact) file that you can send as you see fit. As most BaaS solutions has their own local storage and API it may not always make sense to integrate, except that you could easily store a small Realm file as a blob in any BaaS and transfer it remotely.
It will also really soon be possible to export some or all objects as json which you then again can send to remote services. That does however take up much more space/bandwidth compared to Realms compact data format, but could be needed if you want to persist remotely in another database format.
Re: Show HN: Realm (YC S11), a mobile database
#87Re: Show HN: Realm (YC S11), a mobile database
#88Re: Show HN: Realm (YC S11), a mobile database
#89The speed, simplicity, and lack of headaches (threads, contexts, etc) really make this an interesting solution. Hope these guys/gals crush this!