Api Rate limiter

You can configure rate limiter cache in local.php By default, filesystem is used as:

1
2
3
api_rate_limiter_cache => [ 
    'type'      => 'file_system',
], 

You can configure memcached server:

'api_rate_limiter_cache' => [
    'memcached' => [
      'servers' =>
        [
          [
            'host' => 'localhost',
            'port' => 11211
          ]
        ]
    ]
  ],

Or whatever cache you want described in Symfony cache documentation.