]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- typos and formatting
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 12 Apr 2017 20:28:55 +0000 (16:28 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 12 Apr 2017 20:28:55 +0000 (16:28 -0400)
Change-Id: I88a304e315b68eded31e91da04265da583bc417b

doc/build/faq/performance.rst

index 61c0d6ea22e17aa57e555c5908168f88343b079f..d9684a44cb590550b3147ec2d5a1a49e1b195456 100644 (file)
@@ -483,11 +483,11 @@ is occurring:
   mailing list support is at: http://www.sqlalchemy.org/support.html#mailinglist
 
 The cache works by creating a cache key that can uniquely identify the
-combination of a specific **dialect** and a specific **Core SQL expression**.
+combination of a specific dialect and a specific Core SQL expression.
 A cache key that already exists in the cache will reuse the already-compiled
 SQL expression.  A cache key that doesn't exist will create a *new* entry
 in the dictionary.   When this dictionary reaches the configured threshhold,
-the LRU cache will *trim the size* of the cache back down by a certain percentage.
+the LRU cache will trim the size of the cache back down by a certain percentage.
 
 It is important to understand that from the above, **a compiled cache that
 is reaching its size limit will perform badly.**   This is because not only
@@ -498,7 +498,7 @@ its size back down.
 The primary reason the compiled caches can grow is due to the **antipattern of
 using a new Engine for every operation**.   Because the compiled cache
 must key on the :class:`.Dialect` associated with an :class:`.Engine`,
-calling :func`.create_engine` many times in an application will establish
+calling :func:`.create_engine` many times in an application will establish
 new cache entries for every engine.   Because the cache is self-trimming,
 the application won't grow in size unbounded, however the application should
 be repaired to not rely on an unbounded number of :class:`.Engine`