我有11Mb JSON文件,这些文件将写在Dao上,但是当我保存所有数据时。我收到此错误;
/data/user/0/com.test.save/databases/ChannelDb-wal 6946352 bytes: Bigger than 1048576; truncating
我的代码;
AppDatabase dbRoom = Room.databaseBuilder(getApplicationContext(),
AppDatabase.class, Constants.CHANNEL_DB).build();
AndroidNetworking.get(user.getRemote())
.setTag(Constants.GET_CHANNEL_LIST)
.setPriority(Priority.HIGH)
.build()
.getAsOkHttpResponseAndParsed(new TypeToken<List<Channel>>() {
}, new OkHttpResponseAndParsedRequestListener<List<Channel>>() {
@Override
public void onResponse(Response okHttpResponse, List<Channel> channels) {
AsyncTask.execute(() -> dbRoom.channelDao().insertAll(channels));
}
@Override
public void onError(ANError anError) {
Log.d(TAG, "Check 4");
hideProgress();
Toast.makeText(getApplicationContext(), getResources()
.getString(R.string.an_error), Toast.LENGTH_LONG).show();
Crashlytics.log(Log.DEBUG, TAG, anError.getErrorDetail());
}
});
答案 0 :(得分:3)
此WAL的限制为1MB,而Android上的光标窗口的限制为2MB。
因此,即使禁用WAL
,您要完成的工作也毫无意义。
因为即使您设法以某种方式插入,也无法再次检索。
基本上,您有两个可行的选择:
a)解析JSON并将其添加为单个记录,或者
b)将文件保存到文件系统并存储其路径。