Linked by Will Varfar on Tue 3rd Aug 2004 05:32 UTC
Permalink for comment
To read all comments associated with this story, please click here.
To read all comments associated with this story, please click here.
- Microsoft: Patches Did Not Cause Black Screen Problem
posted 2009-12-01 - Qt 4.6.0 Released
posted 2009-12-01 - Psystar, Apple To Enter Settlement Agreement
posted 2009-12-01 - Sun Releases VirtualBox 3.1, Adds Teleportation Feature
posted 2009-11-30 - MorphOS To Support PowerMac G4 Models
posted 2009-11-30 - Crunchpad Project Implodes
posted 2009-11-30 - Shopping Season Is Here
posted 2009-11-30 - Programming: Notepad or Visual?
posted 2009-11-29 - Episode 29: Warranty Void
posted 2009-11-29 - How KDE and GNOME Managed To Shoot Each Other Dead
posted 2009-11-29 - Important FreeBSD "Local Root" Exploit Patch Available
posted 2009-12-01 - Microsoft: Office 2010 To Ship in June 2010
posted 2009-11-30 - KDE 4.4: What's New?
posted 2009-11-30 - ChromeShell Mimics Chome OS on Windows
posted 2009-11-30 - Intel Roadmap Leak Shows Desktop Core i3/i5/i7 Plans
posted 2009-11-29 - IBM Shows off Power7 HPC Monster
posted 2009-11-27 - Dell Releases Experimental, Unsupported Chrome OS Image
posted 2009-11-27 - Distrowatch: First look at Fedora 12
posted 2009-11-26 - Direct2D Acceleration: Firefox Measures up to IE9
posted 2009-11-26 - Chrome Extensions Site Now Open for Uploads
posted 2009-11-24
Recent Original Stories
- Programming: Notepad or Visual? posted 2009-11-29
- Episode 29: Warranty Void posted 2009-11-29
- Review: iPhone 3GS 16GB, White posted 2009-11-22
Recent Comments
Headlines
Random Comments
- RE[7]: the power of the trend lemming posted 2005-07-20 22:38:58 by Arun
- RE[3]: Quantifying the Difference posted 2006-03-30 05:45:49 by PowerMacX
- RE[2]: As usual... posted 2006-10-09 19:15:52 by dagw
- This is a nonstory posted 2007-02-06 14:56:19 by eggs
- RE[2]: nice posted 2009-03-04 02:40:26 by TechGeek
Random Stories
- Actor William Fichtner on Technology, Movies & Career posted 2005-05-24
- Poll: Can you Use Programming Languages? posted 2002-10-30
- Designing the Operating System of Tomorrow posted 2004-04-07
Random OS Link





Network transparency is good, WHEN it's done in the OS (transparent), and why? Because it makes applications a) more powerful/flexible, and b) simpler.
Why should an MP3 player have code to open a file, play it, and then some more, different code for the case that the data comes in over a network? Just get the data, and play it, allright? So stuff like ftp servers mounted on directories, where all common file access works the same as for local files, is nice. The user will know that it's coming from overseas, if he just mounted that ftp directory.
The OS SHOULD worry about local vs. remote, and prefer local operations. In a distributed sytem/cluster, an approach could be, to migrate workloads to other CPU's in the network as much as possible. Wrong: instead of one CPU doing the thing locally (efficient), it splits the task in parts, and creates a lot of network traffic moving data/code around. A better approach: try to use local resources FIRST, and when those are in full use, THEN try to use remote resources to help speed things. The same effect, but minimises use of the network (=usually the most precious resource/bottleneck)