I keep seeing "bootstrapping" mentioned in discussions of application development. It seems both widespread and important, but I've yet to come across even a poor explanation of what bootstrapping actually is; rather, it seems as though everyone is just supposed to know what it means. I don't, though. Near as I can figure, it has something to do with initialization tasks required of an application upon launch, but I could be completely wrong about that. Can anyone help me to understand this idea?
|
1
|
|||||||||||
|
|
|
See on the Wikipedia article on bootstrapping. There is a section and links explaining what it means in Computing. It has four different uses in the field. Here are some quotes, but for a more in depth explanation, and alternative meanings, consult the links above.
|
|||
|
|
|
"Bootstrapping" comes from the term "pulling yourself up by your own bootstraps." That much you can get from Wikipedia. In computing, a bootstrap loader is the first piece of code that runs when a machine starts, and is responsible for loading the rest of the operating system. In modern computers it's stored in ROM, but I recall the bootstrap process on the PDP-11, where you would poke bits via the front-panel switches to load a particular disk segment into memory, and then run it. Needless to say, the bootstrap loader is normally pretty small. "Bootstrapping" is also used as a term for building a system using itself -- or more correctly, a predecessor version. For example, ANTLR version 3 is written using a parser developed in ANTLR version 2. |
||
|
|
|
For completeness, it is also a rather important (and relatively new) method in statistics that uses resampling / simulation to infer population properties from a sample. It has its own lengthy Wikipedia article on bootstrapping (statistics). |
||||
|
|
|
In the context of application development, "bootstrapping" usually comes up when talking about modular and/or auto-updatable software. Rather than the user downloading the entire app, including features he does not need, and re-downloading and manually updating it whenever there is an update, the user only downloads and starts a small "bootstrap" executable, which in turn downloads and installs those parts of the application that the user needs. Additionally, the bootstrap component is able to look for updates and install them each time it is started. |
||
|
|
|
Forget links: here's the wikipedia section :D
|
|||
|
|
|
|
Alex, it's pretty much what your computer does when it boots up. ('Booting' a computer actually comes from the word bootstrapping) Initially, the small program in your BIOS runs. That contains enough machine code to load and run a larger, more complex program. That second program is probably something like NTLDR (in Windows) or LILO (in Linux), which then executes and is able to load, then run, the rest of the operating system. |
||
|
|
|
|
An example of bootstrapping is in some web frameworks. You call index.php (the bootstrapper), and then it loads the frameworks helpers, models, configuration, and then loads the controller and passes off control to it. As you can see, it's a simple file that starts a large process. |
||
|
|
