i have a high traffic website (1+ Millions visitors per day) and i need to detect their user agent. i have a list over 1000 mobile devices.
i run memcache to output dynamic content based on what page they access and params they put eg:
/document/page/1?textsize=large
and i don't have static pages nor i cant use sub-domains.
i found different scripts that check user agent:
http://www.mobile-phone-specs.com/user-agent-browser/0/
http://detectmobilebrowsers.mobi/
http://detectmobilebrowsers.com/
my question is, performing these check every time a page load will make my site slow with the traffic i get
edit: i need to know in my php code if it's a mobile or not browser.
how can i make this check to run faster?
iphoneorandroidorsamsungfor example), don't look at each specific and then when you check the device, check which one as more traffic to your site, this way you will get more chances to get right away the right device and spend less time preg_matching the user agent. – Book Of Zeus Dec 14 '11 at 23:59