I would recommend learning to use it piecemeal as you need it. This seems to be the most common way to use Boost. Personally, when I need a piece of functionality and suspect that someone else has already written it, I:
- Google for it
- Look in Boost - usually returned in the google
- Look for an STL-based solution
If you find the functionality you need in Boost, then dig into the docs and samples until you understand how to use the library.
One of the fairly unique things about Boost is that it is a collection of relatively orthogonal components. You generally don't learn Boost. Instead, you pull something like Boost.SmartPtr into a project because you need shared pointers. When you find that you are writing command-line test tools, you find a need for Boost.Program_options so you learn how to use it instead of getopt. Since you are writing test tools, you notice that Boost.Test exists and take a look at that.
I've found that people tend to organically discover Boost instead of learn the full breadth of it. With all of that said, grab the book as it will serve as a good reference and is probably more readable than the documentation in general.