Im currently using a docker container, also i use ...
# community-help
a
Im currently using a docker container, also i use postgres in docker container and i get response times of about 1ms with postgres and sub milisecond response with redis docker, so the problem is not the latency between docker, maybe http responses of typesense are slow?
j
Both Redis and Postgres use a binary protocol for communication, whereas Typesense uses http. So the additional latency is coming from http parsing.
You could reduce this latency by using persistent http connections from your app layer