I am using the standard code igniter profiling functionality to view performance breakdown for pages. I am also using memcache to store the results of some DB queries. I would like the cache lookups to appear on the profiling summary (so I know I m not getting all the DB queries on the page and I know the performance of the lookup). Is there a standard way to do this with CodeIgniter?
I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...