1

我试图通过定义索引使我的 Room 数据库的一列独一无二。但是,这导致我的编译器失败,因为它大大增加了所需的对象堆。

如果我使用@Entity(tableName = "seeds", indices = {@Index(value = {"name"}, unique = true)}) @Fts4

运行“gradlew build --stacktrace”时出现编译器错误:

Error occurred during initialization of VM
Could not reserve enough space for 3145728KB object heap

如果我只使用@Entity(tableName = "seeds") @Fts4,应用程序会正确编译。

我在我的gradle.properties...中尝试了不同的设置

org.gradle.jvmargs=-Xmx3g是我能给它的最大价值。在4g它抱怨该值超过了允许的最大值。因此,所有其他关于此的 SO 线程都没有帮助,因为我已经达到了最大值。我通常在2g. 所以这个“小”的变化似乎使所需的对象堆增加了一倍。

有谁知道处理唯一索引的更好方法?

有谁知道如何解决这个级别的对象堆问题?

4

1 回答 1

1

正如@CommonsWare 所说,表格似乎@FTS4不支持索引。

在网站https://developer.android.com/training/data-storage/room/defining-data他们提到:

如果您的应用必须支持不允许使用 FTS3 或 FTS4 表支持的实体的 SDK 版本,您仍然可以索引数据库中的某些列以加快查询速度。

现在让我假设,它们不支持 FTS3/4 上的索引。

我现在通过一种解决方法解决了唯一性问题,即在插入新对象之前检查列中是否存在匹配项:

/**
 * Add a SeedEntity object to the database,
 * if there is no entity in the database with the same name (non-case-sensitive)
 *
 * @param seedEntity Object that is supposed to be added to the database
 * @return  whether the Object has been added or not
 */
public boolean addSeed(SeedEntity seedEntity)
{
    for (SeedEntity entity : mObservableSeeds.getValue())
        if (entity.getName().toLowerCase().equals(seedEntity.getName().toLowerCase()))
            return false;

    mExecutors.diskIO().execute(() ->
            mDatabase.runInTransaction(() ->
                    mDatabase.seedDao().insert(seedEntity)
            )
    );
    return true;
}

不完全是我想要的,但现在解决了这个目的。

于 2020-10-24T14:57:43.377 回答