Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Realm is not a relational database, but an Object database.

This means that we totally avoid the impedance mismatch when you try to map Java references to tables. In Realm, relationships are first-class citizens.

This is also one of the reasons that we can provide lazy-loading for everything. With ORM's the API might look the same on the surface, but you usually run into problems when trying to access foreign collections.

API wise we try to stay as close to normal Java as possible, which is probably why it looks similar to what Hibernate offers.

Regarding specific features.

- Realm uses zero-copy as much as possible, so collections in Java point directly to the underlying data (i.e takes almost no space on the Java heap).

- Collections are live updated yes.

- Deleted objects could potentially be accessed after they are deleted, but there is API methods for avoiding that.

- Cascading deletes is not supported yet, but really high on our TODO and definitely a feature we want to add.



Sorry my edit was after your answer.

Yeah well, literally ORM has relational in it, but you probably know what I mean.

So it behaves more like a graph store? - Can I query bottom up / through collections ?

I'm really interested in the technical details and their implications.


Yes, thinking about the internal structure as a graph will give you the right ideas.

We don't have support for collecting objects bottom up yet, bu t it is tracked here: https://github.com/realm/realm-java/issues/2232

Realm Swift/Objective C has support for bi-directional references and we are adding that to Realm Java shortly as well: https://github.com/realm/realm-java/issues/607 ..That will also help when doing bottom-up queries.

If you want to know more about the internal details. There is some talks/articles here that might interest you:

- https://realm.io/news/threading-deep-dive/

- https://realm.io/news/jp-simard-realm-core-database-engine/

- https://www.youtube.com/watch?v=vGFInG96KH4


Thanks !

I'm reading through the docs and it seems very appealing. Especially the Observability of changes. I assume this works well because it is contained in one Process.


No, the change notifications will work across processes as well. Realm Java still need to add multi-process support though (https://github.com/realm/realm-java/issues/1091), but it is working in Realm Swift/Objective C.


Thanks for your answer.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: