Redis for API calls

Redis is single threaded, but it is fast. Can we use the Redis database for API calls since the API call is parallel in nature? Is Redis able to handle multiple API call requests?

+4
source share
2 answers

Yes, you can use Redis in the database for a system that must support multiple simultaneous API calls.

When you implement your API calls using any framework and language that interests you, if your API implementation needs to make a request to Redis, that call will wait for the receive queue for the socket until your request is processed.

- Redis API- , .

+6

Source: https://habr.com/ru/post/1669804/


All Articles