Is there a difference in speed (regardless of how infinitesimal) if you place a unix socket file on disk rather than tmpfs/ramdisk (ubuntu)?
Asked
Active
Viewed 1,633 times
1 Answers
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
-
2so given that, is it better to use tmpfs? – carillonator Apr 18 '13 at 17:09