We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have setup a rate limit in the controller like: @Ratelimit(methods={"POST", "GET"}, limit=100, period=10);
@Ratelimit(methods={"POST", "GET"}, limit=100, period=10);
Using memcached storage engine which seems to be saving correctly the key. I am inspecting it with the following command: memcdump --servers=localhost
memcdump --servers=localhost
POST.GET.api.locations.cities.MY-OAUTH2-TOKEN-XYZ
But it seems the $info variable within the Service/Storage/Memcache.php is not getting modified in the upcoming API calls
Array ( [limit] => 100 [calls] => 2 [reset] => 1532080555 )
I am always getting the same result. Is there anything I am doing wrong ?
The text was updated successfully, but these errors were encountered:
Same issue
Sorry, something went wrong.
No branches or pull requests
I have setup a rate limit in the controller like:
@Ratelimit(methods={"POST", "GET"}, limit=100, period=10);
Using memcached storage engine which seems to be saving correctly the key. I am inspecting it with the following command:
memcdump --servers=localhost
POST.GET.api.locations.cities.MY-OAUTH2-TOKEN-XYZ
But it seems the $info variable within the Service/Storage/Memcache.php is not getting modified in the upcoming API calls
Array
(
[limit] => 100
[calls] => 2
[reset] => 1532080555
)
I am always getting the same result.
Is there anything I am doing wrong ?
The text was updated successfully, but these errors were encountered: