Nov 2012 edition of Standards for Web Applications on Mobile: current state and roadmap

2012-12-12 Thread Dominique Hazael-Massieux
Hi all, A few days late, but I have just published my quarterly overview of the most mobile-relevant Web application technologies: http://www.w3.org/2012/11/mobile-web-app-state/ As always feedback, and even better, contributions to the wiki version at

Re: IDBCursor should walk on secondary ordering of index value

2012-12-12 Thread Kyaw Tun
If you have that information from your other filtering, then why not just fetch them directly? Like IDBObjectStore.get(primary_key)? The use case, here, is key joining without serialization, so that it is very fast. We also want single scan. get method involve serialization and resanning. The