The criteria for this project are unique, but I am seeking some perspective...
I possess a CSV file filled with 12,000 rows of data distributed across 12-15 columns. My objective is to convert this into a JSON array and load it using JSONP (must be executed client-side). The process takes a considerable amount of time to query the dataset in order to extract smaller, filtered results. Currently, I am employing JLINQ for filtering, which involves iterating through the array and generating a subset based on certain conditions.
Would utilizing webdb or indexeddb result in significantly faster filtering? Are there any tutorials or articles available that address this specific type of challenge?