@@ -8,23 +8,23 @@ TinyDB serializes all data using the
88`Python JSON <http://docs.python.org/2/library/json.html >`_ module by default.
99It serializes most basic Python data types very well, but fails serializing
1010classes and stores ``tuple `` as ``list ``. If you need a better
11- serializer, you can write your own storage, that e.g. uses the morepowerfull
11+ serializer, you can write your own storage, that e.g. uses the morepowerful
1212(but also slower) `pickle <http://docs.python.org/library/pickle.html >`_ or
1313`PyYAML <http://pyyaml.org/ >`_.
1414
1515Performance
1616^^^^^^^^^^^
1717
18- TinyDB is NOT designed to be used in environments, where performance might be
19- an issue.Altough you can improve the TinyDB performance as described below,
18+ TinyDB is NOT designed to be used in environments where performance might be
19+ an issue.Although you can improve the TinyDB performance as described below,
2020you should consider using a DB that is optimized for speed likeBuzhug _ or
2121CodernityDB _.
2222
2323How to Improve TinyDB Performance
2424`````````````````````````````````````
2525
2626The default storage serializes the data using JSON. To improve performance, you
27- can install `ujson <http://pypi.python.org/pypi/ujson >`_ ,a extremely fast
27+ can install `ujson <http://pypi.python.org/pypi/ujson >`_ ,an extremely fast
2828JSON implementation. TinyDB will auto-detect and use it if possible.
2929
3030In addition, you can wrap the storage with the