parentlist.add(k.getParent());
}
// fetch the parents using the keys
Query q2 = pm.newQuery("select from " + FeedInfo.class.getName() + " where urlstring == :keys");
// setting query deadline, allowing eventual consistency on read
q2.addExtension("datanucleus.appengine.datastoreReadConsistency", "EVENTUAL");
// we could also set timeout if we wanted a short-latency query. (We would then
// have to handle the query timeout properly).
// q.setTimeoutMillis(10000);
@SuppressWarnings("unchecked")
List<FeedInfo> results = (List<FeedInfo>) q2.execute(parentlist);