0

I have memcache server listing on 0.0.0.0:11211. I have to query the memcached server from the same box. Which one do you think is better: querying from 127.0.0.1:11211 or from interface-ip:11211. Please explain why also ?

pradeepchhetri
  • 2,518
  • 6
  • 33
  • 45

2 Answers2

1

I have to query the memcached server from the same box.

Why not use Unix socket to avoid TCP/IP overhead:

$ memcached -h
memcached 1.2.8
repcached 2.2
-p <num>      TCP port number to listen on (default: 11211)
-U <num>      UDP port number to listen on (default: 11211, 0 is off)
-s <file>     unix socket path to listen on (disables network support)

See also: Unix domain sockets vs TCP Sockets

Anthony Geoghegan
  • 2,800
  • 1
  • 23
  • 34
quanta
  • 50,327
  • 19
  • 152
  • 213
-1

querying to 127.0.0.1:11211 is better as compared to querying memcached on interface ip.