I have an ajax function which call a servlet to get list of products from various webservices, the number of products can go upto 100,000. i need to show this list in a html table.
I am trying to provide users an interface to filter this list based on several criteria. Currently i am using a simple jquery plugin to achieve this, but i found it to hog memory and time. the javascript that i use basically uses regex to search and filter rows matching the filtering criteria.
I was thinking of an alternate solution wherein i filter the json array returned by my servlet and bind the html table to it. Is there a way to achieve this, if there is, then is it more efficient than the regex approach.