I have to search for a string in data coming from the backend. The data will probably have like 90K records. There will be a search input field which is used to search for the record. Using regular for loop for the entire data doesn't seem ideal and seems very slow. What is the best way to do this? Any specific algorithm I should use?