I was looking for an autocomplete for an addressbook kind of functionality. The requirement was that users can have FirstName,LastName,Email,Type and when user starts typing they need to be searched first by LastName,FirstName,Email and some types were to be given higher priority than others. Doing this on server side means too many calls to be sent to the server so doesnt seems like a perfect solution. Also mostly users will have <100-1000 contacts in addressbook so why not do it on client side. Looked into some autocomplete plugins but none of them were what I wanted and finally landed onto this http://code.flickr.com/blog/2009/03/18/building-fast-client-side-searches/
I have never found such a perfect solution to a complex problem before. Thanks flickr for sharing it ;).
Saturday, February 11, 2012
Monday, February 6, 2012
Mysql JDBC driver and Streaming large resultset
We are moving one legacy component from Berkeley db to mysql so that we can replicate it to distribute read requests and shard it to scale it. I had to dump the entire db contents and stream it over http to some other component. the db content for a single customer can range from 100K to 3-4 Million records. We are using spring JDBC to make the task of dealing with jdbc api simple. Now I was using a ResultSetExtractor to stream the resultset like this.
ResultSetExtractor
ResultSetExtractor
self signed certificates and chrome caching
Ran into an issue today where despite setting cache tags on a swf file, the chrome browser was downloading it everytime I moved from one page to other and come back to same page. This was working fine in Internet Explorer and FireFox. After spending an hour with firebug, pagespeed and fiddler I figured out that cache tags were set correctly but still chrome won't cache it. At last I found this issue reported to chrome developers http://code.google.com/p/chromium/issues/detail?id=103875 . It appears that because I was using a self signed certificate on local install, chrome wont cache any content until I use a valid certificate. So the solution is to generate a free certificate using https://www.startssl.com/ and use it locally to avoid this issue.
Subscribe to:
Posts (Atom)