Posts: 39
Location: Aachen, Germany
|
I'd like to discuss different methodes to fasten a whitelist approach for large list (>1000 elements). So far I have been thinking about MySQL or textfiles on the resource side, and simple switch or sort/search algorithms for the implimentation. With such a large list I'm simply wondering if a textfile would be processed faster than MySQL. Once that is settled I'm wondering if both introduce methodes to speed up the access to a single element, namely searchmethodes like binary search.
If you know about other ways to store a list for a whitelist approach let me know.
|