Commit 5bda7486 authored by Jim Fulton's avatar Jim Fulton

typos (including missing text)

parent 86ed6e9d
...@@ -199,13 +199,14 @@ make it possible to search objects in large collections. ...@@ -199,13 +199,14 @@ make it possible to search objects in large collections.
.. [#caches-are-expensive] ZODB can be very efficient at caching data .. [#caches-are-expensive] ZODB can be very efficient at caching data
in memory, especially if your `working set in memory, especially if your `working set
<https://en.wikipedia.org/wiki/Working_set>`_, because the cache is <https://en.wikipedia.org/wiki/Working_set>`_ is small enough to
simply an object tree and accessing a cached object typically fit in memory, because the cache is simply an object tree and
requires no database interaction. Because each connection has it's accessing a cached object typically requires no database
own cache, connections can be expensive, depending on their cache interaction. Because each connection has its own cache,
sizes. For this reason, you'll generally want to limit the number connections can be expensive, depending on their cache sizes. For
of open connections you have at any one time. Connections are this reason, you'll generally want to limit the number of open
pooled, so opening a connection is inexpensive. connections you have at any one time. Connections are pooled, so
opening a connection is inexpensive.
.. [#amongst] https://www.youtube.com/watch?v=7WJXHY2OXGE .. [#amongst] https://www.youtube.com/watch?v=7WJXHY2OXGE
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment