My application heavily uses webservices and doesn t use database atall. there is a webservice layer which gets data from database and sends it to php UI. so the phpUI doesn t directly interact with the databases. I want to improve the performance of this application what is a better approach to improve the performance? should I use memcached and cache control headers or is there any other way to implement the caching to improve the performance? I want a way to reduce my Http requests to webservices
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 ...