Realm, ObjectBox or Room. Which one is for you?
Tag: database
Android database, Full text searching FTS
Understanding migrations with Room
Room: Data Storage on Android for Everyone (ru)
Squeezing Performance from SQLite: Insertions [https://medium.com/@JasonWyatt/squeezing-performance-from-sqlite-insertions-971aff98eef2]
Полнотекстовый поиск в Android [https://habr.com/ru/company/raiffeisenbank/blog/466787/]
Android room schema export directory
Room – Schema export directory is not provided to the annotation processor so we cannot export the schema
[code language=”java”]
@Database(entities = { YourEntity.class }, version = 1, exportSchema = false)
public abstract class AppDatabase extends RoomDatabase {
}
[/code]
Room and Lombok in Android
java annotation processors are not allowed to change class structures.
Project lombok uses private APIs to do so and Room has no way of knowing about these changes.
They don’t work together