android存储千条数据库,在查询超过几千个结果时,android中的Ormlite DAO变得非常慢...

当有几千个结果时,通过Ormlite DAO查询数据时遇到问题.

码:

List pl = db.getPointsDAO().queryBuilder().where().

eq("route_id", croute).query();

当我想得到一个大的点列表List< Point>当前路线croute我需要等待40秒才能获得40.000分.

其中Point.class是:

@DatabaseTable(tableName = "points")

public class Point extends BaseEntity {

@DatabaseField(generatedId = true)

private Integer point_id;

@DatabaseField(canBeNull = false)

...

@DatabaseField(canBeNull = false)

private Double dose;

@DatabaseField(dataType=DataType.DATE_STRING, format="yyyy-MM-dd HH:mm:ss")

public Date date;

@DatabaseField(canBeNull=true,foreign=true)

private Route route;

public Point() {

super();

};

... ...

}

和Route.class是:

@DatabaseTable(tableName = "routes")

public class Route extends BaseEntity {

@DatabaseField(generatedId = true)

private Integer route_id;

@DatabaseField(canBeNull = true)

private String name;

@ForeignCollectionField(eager = false)

ForeignCollection points;

public Route() {

super();

}

... ...

}

一些想法我做错了什么?

谢谢,

托尼

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值