Reputation: 8201
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
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