Sorry for being really ignorant here, I just want to learn, why is the registry needed for programs? What's it for and why can't software just write variables to their own local files? Does it do something I'm not aware of?
|
|
IMHO, the Windows Registry is an invention almost as practical and useful as the pet rock.
Is there anyone out there who can say with a straight face that the registry is easy to manage, or that it increases the reliability of the system? What I think Microsoft should have done was create a central file that recorded the directory where each app is installed and the extensions of files that it knows how to open. That should be the only information the OS needs to know about an app. Everything else should be stored in the app's own directory. Update: Reply to Mick I disagree with most of the points in the referenced article. Like, "You can't store binary data in an INI file" and "INI files only have two levels of structure". If the system INI file stored only the info the OS needs to know about apps, that's just a few text strings each, there's no need for binary data or a hierarchical structure. An application INI should just hold config and preference information, and thus, again, no need for binary data and hierarchies. The advantage of the INI format was that it was a simple, readable, text file. That made it easy to parse, easy to update, and easy to manage. The whole point of my original post was that by adding the registry, with all sorts of complex features, Microsoft replaced something that was easy to manage with something that was hard to manage. There's some validity to the points about security and concurrency. But surely we could have solved those problems within the existing framework. Sure, an INI file does not make a good database. But so what? That isn't what it was for. This is like complaining that a pair of shoes doesn't help you swim or enable you to fly or cook your breakfast, and therefore we should replace all shoes with jet-powered flippers with radio controls and built-in microwave ovens. The result would surely be an overly-complicated, awkward monstrosity. It would cease to be comfortable to walk in, and would probably not be very good for swimming or making breakfast. Instead of being very good for one thing -- walking -- it would be barely usable for a dozen things. Things that, by the way, we already had perfectly good tools to accomplish. Oh, kind of like the registry. |
|||||||||||||||||
|
|
The Windows Registry was intended to stem the proliferation of local It has been well argued that the particular implementation was far worse than the problem it set out to cure. Having had to do precision surgery on a registry or two in my life, I happen to agree. |
|||
|
Registry Purpose
Why Registry over INI files?
|
|||
|
|
|
Central, ubiquitous management of program preferences and settings. |
|||
|
|
Actually, that was the way it was done in Windows 3.1, with many applications using their own INI files. Windows 95 (from memory) introduced the concept of a centralised repository (though I think there was a limited purpose registry before then) and people have been buying registry cleaner programs ever since. People used to complain then that there were too many INI files to manage and that speed was a problem since they were text files that needed parsing. I, for one, prefer applications to have their own stuff in their own directories so as to make clean-up easier when you want to delete them. |
|||||
|
|
Quoted verbatim from wikipedia:
|
|||
|
|
It can, but this can be inconvenient for the software developer, because:
The registry is nothing more than a simple (from a programmer's prospective) database. |
|||||||||||||||
|
|
It's just a silly convention. In a unix or mac filesystem the software does exactly what you suggest, writing its settings in normal files, usually organized in hidden folders in the user's home directory. Windows has something similar, a folder called "Application Data" off of each user's home folder, and your program can use that for storage instead of screwing with windows APIs and the registry. |
|||||||||||
|
|
Because the Windows NT team thought it was a good way to address the problems with using INI files. This was the primary way that applications (and Windows itself) stored their settings in early versions of Windows: by just "writing variables to their own local files." We've now come almost full circle with XML configuration files, thanks in large part to application vendors' misbehavior with regards to the registry and the inherent likelihood (obvious now in retrospect) of a monolithic database becoming slowly corrupted over time. Although to be fair, most modern criticisms of the registry forget or simply gloss over the compromises that had to be made for performance reasons at the expense of scalability on those early Windows machines. |
|||
|
|