I have a document carefully written to fit in 4 pages; but when I added a \raggedright (or \RaggedRight with use of the ragged2e package) the length gets longer. Furthermore, suddenly the output isn't stable between moving from Web2c on my Linux machine, and a recent version of MiKTeX on my windows machine.
Here's a test case exhibiting the behaviour:
\documentclass[11pt,a4paper]{article}
\usepackage[a4paper,margin=20mm,nohead,foot=7mm]{geometry}
\usepackage{lipsum}
\usepackage{microtype}
\usepackage{txfonts}
\renewcommand{\familydefault}{\sfdefault}
\begin{document}
\lipsum[1-35]
\end{document}
This produces something a touch over 4 pages and Web2c and MikTeX produce visually identical PDF files. But now consider:
\documentclass[11pt,a4paper]{article}
\usepackage[a4paper,margin=20mm,nohead,foot=7mm]{geometry}
\usepackage{lipsum}
\usepackage{ragged2e}
\usepackage{microtype}
\usepackage{txfonts}
\renewcommand{\familydefault}{\sfdefault}
\begin{document}
\newlength{\saveparindent}
\setlength{\saveparindent}{\parindent}
\RaggedRight
\setlength{\parindent}{\saveparindent}
\lipsum[1-35]
\end{document}
On Web2c this adds two lines to the length of the document; but on MikTeX it adds 7 lines! What's going on?
Update: As some comments have very helpfully pointed out, package versions can make a difference, and unsurprisingly, this seems to be the case-- my Web2C installation (outside my control!) is very out of date. However, the original question stands-- why is there a different at all between using \RaggedRight and not?

\listfilesto your document and check the versions of the packages. – David Carlisle Mar 21 '13 at 13:26microtype-- I have version 2.5 of that package, and I run MacTeX2012 -- the overall difference in document length seems to stem from a line break being inserted either right before or right after the wordsclerisque, in the paragraph that starts withCurabitur tellus magna. Maybe unsurprisingly, LaTeX does not attempt to hyphenate this word, and this one variation has all these follow-on consequences. Have you tried finding out what happens with "real" text? – Mico Mar 21 '13 at 16:00\raggedrightdisables almost(?) all hyphenation, so the same amount of stuff won't fit on a line. As far as I know,\RaggedRightdoes not work the way you describe either.... I'm pretty sure that it's the 'expected' behaviour for ragged text to be longer than justified text. – jon Mar 21 '13 at 20:08\emergencystretch(e.g.,\emergencystretch=1em), which might help with what you're up to.... – jon Mar 21 '13 at 20:37\raggedrightcertainly doesn't squash the text. With fully justified text, the spacing between one line of text and another will vary. If you're line width is wide enough, this is usually not particularly noticeable. But if you use a very narrow line, the effect will be magnified. As I understand\raggedright, the spacing between words from one line to the next should be highly consistent (if not the same). In general, there will be fewer words per line when using\raggedrightso you will have more lines of text and hence a longer document. – A.Ellett Mar 21 '13 at 22:22\saveparindent: ragged2e offers a way to set the\parindentused by\RaggedRight. Please RTFM. – Martin Schröder Mar 22 '13 at 09:37