I have a data table with 600,000 records about 25 megabytes in size. It is indexed using a 4-byte key.
Is there a way to quickly find a string in such a dataset with PHP without resorting to MySQL?
This website is mostly static with little PHP code and is database independent and therefore fast. I would like to add this data without using MySQL, if possible.
In C ++, I would make a memory card and do a binary search in it. Is there a way to do something like this in PHP?
source share