Just a side note: The SO link you have in the footer seems to not have any questions about your actual product in the tag, but about Java realms instead.
Show HN: Realm (YC S11), a mobile database
31–40 of 105 posts
Re: Show HN: Realm (YC S11), a mobile database
#32Cool idea. I had the same problem with the intro video that others have mentioned. I'm gonna read more when the Android version is out, since this might actually be able to fix a common pain point I have with my apps with data persistence (I'd like to be able to read recently touched questions in my Stack Exchange app even when I don't have internet, which requires a damn complex caching layer). Just a side note: The…
I’m drafting something to dive deeper into the video now; anything in particular you’d like us to dive into?
Re: Show HN: Realm (YC S11), a mobile database
#33Re: Show HN: Realm (YC S11), a mobile database
#34Cool idea. I had the same problem with the intro video that others have mentioned. I'm gonna read more when the Android version is out, since this might actually be able to fix a common pain point I have with my apps with data persistence (I'd like to be able to read recently touched questions in my Stack Exchange app even when I don't have internet, which requires a damn complex caching layer). Just a side note: The…
Yup, offline mode is definitely a big area of focus for us. Regarding the tag, I’m not sure what the protocol is for these things, but since it wasn’t used for a clear product/project/topic, we figured it was as good a destination as any, since we’d prefer to let everybody benefit from answers we may give to support questions, via SO. I’m drafting something to dive deeper into the video now; anything in particular yo…
Re: Show HN: Realm (YC S11), a mobile database
#35Earlier quoted context omitted.
The big thing is really ease of use. Our blog post has a few more details on that point [0] but basically what we heard over and over and saw ourselves, is that Core Data quickly gets in your way if your app grows [1][2][3]. In essence, we tried with this initial release to offer a rich feature set with a simple API, less side-effects (especially for multi-threaded apps), and a performance that’s even better than usi…
Core Data has been improved and stabilized by Apple for over a decade, is used internally by many first party apps in iOS, is well documented and fully integrated into Xcode, and heavily "marketed" by Apple at WWDC. Any perceived performance issues can be eliminated or reduced by using faults, indexes and improving queries through NSPredicates. Even one of the blog posts you quote above [3] states that if he was star…
And it's all closed source.
Re: Show HN: Realm (YC S11), a mobile database
#36EDIT: I just came across the REST API / JSON import section in the documentation - really cool stuff!!
Re: Show HN: Realm (YC S11), a mobile database
#37Looks interesting! The Swift examples on the homepage seem to be showing Obj-C code: http://cl.ly/image/2r250h3a0A1y
Sorry about that. We’ve been seeing some issues with our CloudFront caches all morning, but if you give it a hard reload or two in your browser, you should eventually see our Swift samples — we’ll keep working to fix the issue.
Re: Show HN: Realm (YC S11), a mobile database
#38Re: Show HN: Realm (YC S11), a mobile database
#39How do you backup this database? Does it integrate with iCloud or whatever is available on the device?
The database is stored in a single file that is easily backed up. It does not have any explicit integration with iCloud, but you can easily use it to back up a copy of the db, or you can stream the copy back home yourself via ftp or http.
Re: Show HN: Realm (YC S11), a mobile database
#40Earlier quoted context omitted.
Yup, offline mode is definitely a big area of focus for us. Regarding the tag, I’m not sure what the protocol is for these things, but since it wasn’t used for a clear product/project/topic, we figured it was as good a destination as any, since we’d prefer to let everybody benefit from answers we may give to support questions, via SO. I’m drafting something to dive deeper into the video now; anything in particular yo…
I'd love deeper info about "we don’t require deserialization to get objects out of the file", but that might be somewhere in the documentation. I'm assuming you're faster than SQLite, so a demo showing those side by side might be a good selling point too.
There are some benchmarks in our intro blogpost[0]. So I can recommend reading that for a bit more background information. We will have more blog posts coming out soon about the technical details.