diff Sphinx/source/faq/scalability.rst @ 392:0fb9369e893e

Orthanc 1.6.1
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 21 Apr 2020 15:22:20 +0200
parents e4b0a4d69f42
children c95817c254fe
line wrap: on
line diff
--- a/Sphinx/source/faq/scalability.rst	Tue Apr 21 08:58:56 2020 +0200
+++ b/Sphinx/source/faq/scalability.rst	Tue Apr 21 15:22:20 2020 +0200
@@ -54,7 +54,7 @@
 Here is a generic setup that should provide best performance in the
 presence of large databases:
 
-* Make sure to use the latest release of Orthanc (1.6.0 at the time of
+* Make sure to use the latest release of Orthanc (1.6.1 at the time of
   writing).
 
 * We suggest to use the latest release of the :ref:`PostgreSQL plugin
@@ -134,9 +134,9 @@
 arenas <https://sourceware.org/glibc/wiki/MallocInternals>`__ are
 created by the glibc standard library (up to one per thread). As a
 consequence, if each one of the 50 threads in the HTTP server of
-Orthanc (this was the default value in Orthanc <= 1.6.0) allocates at
-some point, say, 50MB, the total memory usage reported as "VmRSS" can
-grow up to 50 threads x 50MB = 2.5GB, even if the Orthanc threads
+Orthanc (default value of the ``HttpThreadsCount`` option) allocates
+at some point, say, 50MB, the total memory usage reported as "VmRSS"
+can grow up to 50 threads x 50MB = 2.5GB, even if the Orthanc threads
 properly free all the buffers.
 
 .. highlight:: bash