Krishna Kumar
Krishna Kumar

Reputation: 8201

What does total connections mean in stats command mean

I found that it is way less than total number of get commands. Is this number of server to server connections that are reused.

Upvotes: 0

Views: 3372

Answers (1)

mikewied
mikewied

Reputation: 5333

Total connections is the number of connections that have been made to the server since you started it. Current connections is the number of connections that the server currently has. Total connections should be way less than the total number of get commands because typically you connect to memcached and send multiple get/set requests over the same connection.

Upvotes: 2

Related Questions