4

Is there a difference in speed (regardless of how infinitesimal) if you place a unix socket file on disk rather than tmpfs/ramdisk (ubuntu)?

incognito2
  • 1,024
  • 3
  • 13
  • 20

1 Answers1

7

Only at open time. The file never actually gains any contents; what is sent over it passes through memory only. The file system is only used to provide a system-wide name.

Fred Foo
  • 355,277
  • 75
  • 744
  • 836