I've already built the web service API by jersey framework. Now I want to limit the quotas for every client. For example: - one client can only make less than 10000 requests in one day. - one client can only make less than 10 requests per second. so on and so forth.
Should I store these information in the table of the database? But if I do that, will it cost a lot time to handle these requests because I have to update the table.
I am looking forward to other efficient ways to solve these problem. Because this is my first time to do this kind of job, hope somebody can give me some advise to in these problems. Thanks~!