Cleaned up memory usage page HTML

- fixed validation errors
- removed deprecated attributes
- improved accessibility with richer table semantics (headers and
caption elements) and language declaration
pull/122/head
luccioman 8 years ago
parent 0487336ec3
commit c41b31dcb3

@ -1,5 +1,5 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!DOCTYPE html>
<html lang="en">
<head>
<title>YaCy '#[clientname]#': Performance Settings for Memory</title>
#%env/templates/metas.template%#
@ -19,7 +19,7 @@
<h2>Performance Settings for Memory</h2>
<p><img src="PerformanceGraph.png?nopeers=" id="graph" alt="PerformanceGraph"/></p>
<form id="optionreloadGraph" action="" method="get"><p>
<form id="optionreloadGraph" method="get"><p>
<input type="checkbox" name="option" id="autoreload" #(autoreload.checked)#::checked="checked"#(/autoreload.checked)#/>
<label for="autoreload">refresh graph</label>
</p></form>
@ -33,201 +33,169 @@
<label for="dfltmem">use Standard Memory Strategy</label> (current: #[memoryStrategy]#)
</p></form>
<p><strong>Memory Usage:</strong></p>
<table border="0">
<tr class="TableHeader" valign="bottom">
<td>&nbsp;<br />Type</td>
<td>After Startup<br />&nbsp;</td>
<td>After Initializations<br />before GC</td>
<td>After Initializations<br />after GC</td>
<td>Now<br />#(gc)#before <a href="PerformanceMemory_p.html?gc=">GC</a>::after GC#(/gc)#</td>
<td>Description<br />&nbsp;</td>
</tr>
<table style="border-width:0px;">
<caption><strong>Memory Usage</strong></caption>
<thead>
<tr class="TableHeader" style="vertical-align:bottom;">
<th>&nbsp;<br />Type</th>
<th>After Startup<br />&nbsp;</th>
<th>After Initializations<br />before GC</th>
<th>After Initializations<br />after GC</th>
<th>Now<br />#(gc)#before <a href="PerformanceMemory_p.html?gc=">GC</a>::after GC#(/gc)#</th>
<th>Description<br />&nbsp;</th>
</tr>
</thead>
<tbody>
<tr class="TableCellLight">
<td class="TableCellDark" align="left">Max</td>
<td align="center" colspan="4">#[memoryMax]# MByte</td>
<td align="left">maximum memory that the JVM will attempt to use</td>
<th scope="row" class="TableCellDark" style="text-align:left;">Max</th>
<td style="text-align:center;" colspan="4">#[memoryMax]# MByte</td>
<td style="text-align:left;">maximum memory that the JVM will attempt to use</td>
</tr>
<tr class="TableCellLight">
<td class="TableCellDark" align="left">Available</td>
<td align="right">#[memoryAvailAfterStartup]# MByte</td>
<td align="right">#[memoryAvailAfterInitBGC]# MByte</td>
<td align="right">#[memoryAvailAfterInitAGC]# MByte</td>
<td align="right">#[memoryAvailNow]# MByte</td>
<td align="left">total available memory including free for the JVM within maximum</td>
<th scope="row" class="TableCellDark" style="text-align:left;">Available</th>
<td style="text-align:right;">#[memoryAvailAfterStartup]# MByte</td>
<td style="text-align:right;">#[memoryAvailAfterInitBGC]# MByte</td>
<td style="text-align:right;">#[memoryAvailAfterInitAGC]# MByte</td>
<td style="text-align:right;">#[memoryAvailNow]# MByte</td>
<td style="text-align:left;">total available memory including free for the JVM within maximum</td>
</tr>
<tr class="TableCellLight">
<td class="TableCellDark" align="left">Total</td>
<td align="right">#[memoryTotalAfterStartup]# KByte</td>
<td align="right">#[memoryTotalAfterInitBGC]# KByte</td>
<td align="right">#[memoryTotalAfterInitAGC]# KByte</td>
<td align="right">#[memoryTotalNow]# MByte</td>
<td align="left">total memory taken from the OS</td>
<th scope="row" class="TableCellDark" style="text-align:left;">Total</th>
<td style="text-align:right;">#[memoryTotalAfterStartup]# KByte</td>
<td style="text-align:right;">#[memoryTotalAfterInitBGC]# KByte</td>
<td style="text-align:right;">#[memoryTotalAfterInitAGC]# KByte</td>
<td style="text-align:right;">#[memoryTotalNow]# MByte</td>
<td style="text-align:left;">total memory taken from the OS</td>
</tr>
<tr class="TableCellLight">
<td class="TableCellDark" align="left">Free</td>
<td align="right">#[memoryFreeAfterStartup]# KByte</td>
<td align="right">#[memoryFreeAfterInitBGC]# KByte</td>
<td align="right">#[memoryFreeAfterInitAGC]# KByte</td>
<td align="right">#[memoryFreeNow]# MByte</td>
<td align="left">free memory in the JVM within total amount</td>
<th scope="row" class="TableCellDark" style="text-align:left;">Free</th>
<td style="text-align:right;">#[memoryFreeAfterStartup]# KByte</td>
<td style="text-align:right;">#[memoryFreeAfterInitBGC]# KByte</td>
<td style="text-align:right;">#[memoryFreeAfterInitAGC]# KByte</td>
<td style="text-align:right;">#[memoryFreeNow]# MByte</td>
<td style="text-align:left;">free memory in the JVM within total amount</td>
</tr>
<tr class="TableCellLight">
<td class="TableCellDark" align="left">Used</td>
<td align="right">#[memoryUsedAfterStartup]# KByte</td>
<td align="right">#[memoryUsedAfterInitBGC]# KByte</td>
<td align="right">#[memoryUsedAfterInitAGC]# KByte</td>
<td align="right">#[memoryUsedNow]# MByte</td>
<td align="left">used memory in the JVM within total amount</td>
</tr>
<th scope="row" class="TableCellDark" style="text-align:left;">Used</th>
<td style="text-align:right;">#[memoryUsedAfterStartup]# KByte</td>
<td style="text-align:right;">#[memoryUsedAfterInitBGC]# KByte</td>
<td style="text-align:right;">#[memoryUsedAfterInitAGC]# KByte</td>
<td style="text-align:right;">#[memoryUsedNow]# MByte</td>
<td style="text-align:left;">used memory in the JVM within total amount</td>
</tr>
</tbody>
</table>
<p><strong>Solr Resources:</strong></p>
<table border="0">
<tr class="TableHeader" valign="bottom">
<td>Class</td>
<td>Type</td>
<td>Description</td>
<td>Statistics</td>
<td>Size</td>
</tr>
<table style="border-width:0px;">
<caption><strong>Solr Resources</strong></caption>
<thead>
<tr class="TableHeader" style="vertical-align:bottom;">
<th>Class</th>
<th>Type</th>
<th>Description</th>
<th>Statistics</th>
<th>Size</th>
</tr>
</thead>
<tbody>
#{SolrList}#
<tr class="TableCellLight">
<td align="left" class="TableCellDark">#[class]#</td>
<td align="left" class="TableCellDark">#[type]#</td>
<td align="left">#[description]#</td>
<td align="left">#[statistics]#</td>
<td align="right">#[size]#</td>
<td style="text-align:left;" class="TableCellDark">#[class]#</td>
<td style="text-align:left;" class="TableCellDark">#[type]#</td>
<td style="text-align:left;">#[description]#</td>
<td style="text-align:left;">#[statistics]#</td>
<td style="text-align:right;">#[size]#</td>
</tr>
#{/SolrList}#
</tbody>
<tfoot>
<tr class="TableCellDark">
<td colspan="6">Total Cache Count = #[SolrCacheCount]#</td>
<td colspan="5">Total Cache Count = #[SolrCacheCount]#</td>
</tr>
</tfoot>
</table>
<p><strong>Table RAM Index:</strong></p>
<table border="0">
<tr class="TableHeader" valign="bottom">
<td rowspan="2">Table</td>
<td rowspan="2">Size</td>
<td colspan="2">Key</td>
<td colspan="2">Value</td>
</tr>
<tr class="TableHeader" valign="bottom">
<td>Chunk Size</td>
<td>Used Memory</td>
<td>Chunk Size</td>
<td>Used Memory</td>
</tr>
<table style="border-width:0px;">
<caption><strong>Table RAM Index</strong></caption>
<thead>
<tr class="TableHeader" style="vertical-align:bottom;">
<th rowspan="2">Table</th>
<th rowspan="2">Size</th>
<th colspan="2">Key</th>
<th colspan="2">Value</th>
</tr>
<tr class="TableHeader" style="vertical-align:bottom;">
<th>Chunk Size</th>
<th>Used Memory</th>
<th>Chunk Size</th>
<th>Used Memory</th>
</tr>
</thead>
<tbody>
#{EcoList}#
<tr class="TableCellLight">
<td align="left" class="TableCellDark">#[tableIndexPath]#</td>
<td align="right">#[tableSize]#</td>
<td align="right">#[tableKeyChunkSize]#</td>
<td align="right">#[tableKeyMem]#</td>
<td align="right">#[tableValueChunkSize]#</td>
<td align="right">#[tableValueMem]#</td>
<td style="text-align:left;" class="TableCellDark">#[tableIndexPath]#</td>
<td style="text-align:right;">#[tableSize]#</td>
<td style="text-align:right;">#[tableKeyChunkSize]#</td>
<td style="text-align:right;">#[tableKeyMem]#</td>
<td style="text-align:right;">#[tableValueChunkSize]#</td>
<td style="text-align:right;">#[tableValueMem]#</td>
</tr>
#{/EcoList}#
</tbody>
<tfoot>
<tr class="TableCellDark">
<td colspan="9">Total Mem = #[EcoIndexTotalMem]# MB</td>
<td colspan="6">Total Mem = #[EcoIndexTotalMem]# MB</td>
</tr>
</tfoot>
</table>
<p><strong>Object Index Caches:</strong></p>
<table border="0">
<tr class="TableHeader" valign="bottom">
<td>Table</td>
<td>Size</td>
<td>Chunk Size</td>
<td>Needed Memory</td>
<td>Used Memory</td>
<!-- <td>Flushes</td> -->
</tr>
<table style="border-width:0px;">
<caption><strong>Object Index Caches</strong></caption>
<thead>
<tr class="TableHeader" style="vertical-align:bottom;">
<th>Table</th>
<th>Size</th>
<th>Chunk Size</th>
<th>Needed Memory</th>
<th>Used Memory</th>
<!-- <th>Flushes</th> -->
</tr>
</thead>
<tbody>
#{indexcache}#
<tr class="TableCellLight">
<td align="left" class="TableCellDark">#[Name]#</td>
<td align="right">#[Count]#</td>
<td align="right">#[ChunkSize]#</td>
<td align="right">#[NeededMem]#</td>
<td align="right">#[UsedMem]#</td>
<td style="text-align:left;" class="TableCellDark">#[Name]#</td>
<td style="text-align:right;">#[Count]#</td>
<td style="text-align:right;">#[ChunkSize]#</td>
<td style="text-align:right;">#[NeededMem]#</td>
<td style="text-align:right;">#[UsedMem]#</td>
</tr>
#{/indexcache}#
</tbody>
<tfoot>
<tr class="TableCellDark">
<td colspan="9">Total Mem: #[indexcacheTotalMem]# MB</td>
<td colspan="5">Total Mem: #[indexcacheTotalMem]# MB</td>
</tr>
</tfoot>
</table>
<!-- this cache table wasn't used for years
<p><strong>Object Read Caches:</strong></p>
<table border="0">
<tr class="TableHeader" valign="bottom">
<td></td>
<td colspan="9">Read Hit Cache</td>
<td colspan="8">Read Miss Cache</td>
</tr>
<tr class="TableHeader" valign="bottom">
<td>Table</td>
<td>Size</td>
<td>Chunk Size</td>
<td>Used Memory</td>
<td>Read Hit</td>
<td>Read Miss</td>
<td>Write Unique</td>
<td>Write Double</td>
<td>Deletes</td>
<td>Flushes</td>
<td>Size</td>
<td>Chunk Size</td>
<td>Used Memory</td>
<td>Read Hit</td>
<td>Read Miss</td>
<td>Write Unique</td>
<td>Write Double</td>
<td>Deletes</td>
<td>Flushes</td>
</tr>
#{ObjectList}#
<tr class="TableCellLight">
<td align="left" class="TableCellDark">#[objectCachePath]#</td>
<td align="right">#[objectHitCacheCount]#</td>
<td align="right">#[objectHitChunkSize]#</td>
<td align="right">#[objectHitCacheMem]#</td>
<td align="right">#[objectHitCacheReadHit]#</td>
<td align="right">#[objectHitCacheReadMiss]#</td>
<td align="right">#[objectHitCacheWriteUnique]#</td>
<td align="right">#[objectHitCacheWriteDouble]#</td>
<td align="right">#[objectHitCacheDeletes]#</td>
<td align="right">#[objectHitCacheFlushes]#</td>
<td align="right">#[objectMissCacheCount]#</td>
<td align="right">#[objectMissChunkSize]#</td>
<td align="right">#[objectMissCacheMem]#</td>
<td align="right">#[objectMissCacheReadHit]#</td>
<td align="right">#[objectMissCacheReadMiss]#</td>
<td align="right">#[objectMissCacheWriteUnique]#</td>
<td align="right">#[objectMissCacheWriteDouble]#</td>
<td align="right">#[objectMissCacheDeletes]#</td>
<td align="right">#[objectMissCacheFlushes]#</td>
</tr>
#{/ObjectList}#
<tr class="TableCellDark">
<td colspan="19">Total Mem: #[objectHitCacheTotalMem]# MB (hit), #[objectMissCacheTotalMem]# MB (miss); Stop Grow when less than #[objectCacheStopGrow]# MB available left; Start Shrink when less than #[objectCacheStartShrink]# MB availabe left</td>
</tr>
</table> -->
<!-- other cache sizes -->
<p><strong>Other Caching Structures:</strong></p>
<table border="0">
<tr class="TableHeader" valign="bottom">
<td>Type</td>
<td>Size</td>
<td>Hit</td>
<td>Miss</td>
<td>Insert</td>
<td>Delete</td>
</tr>
<table style="border-width:0px;">
<caption><strong>Other Caching Structures</strong></caption>
<thead>
<tr class="TableHeader" style="vertical-align:bottom;">
<th>Type</th>
<th>Size</th>
<th>Hit</th>
<th>Miss</th>
<th>Insert</th>
<th>Delete</th>
</tr>
</thead>
<tbody>
<tr class="TableCellLight">
<td>DNSCache/Hit</td>
<th scope="row">DNSCache/Hit</th>
<td>#[namecacheHit.size]#</td>
<td>#[namecacheHit.Hit]#</td>
<td>#[namecacheHit.Miss]#</td>
@ -235,7 +203,7 @@
<td>(ARC)</td>
</tr>
<tr class="TableCellLight">
<td>DNSCache/Miss</td>
<th scope="row">DNSCache/Miss</th>
<td>#[namecacheMiss.size]#</td>
<td>#[namecacheMiss.Hit]#</td>
<td>#[namecacheMiss.Miss]#</td>
@ -243,7 +211,7 @@
<td>(ARC)</td>
</tr>
<tr class="TableCellDark">
<td>DNSNoCache</td>
<th scope="row">DNSNoCache</th>
<td>#[namecache.noCache]#</td>
<td></td>
<td></td>
@ -251,7 +219,7 @@
<td></td>
</tr>
<tr class="TableCellLight">
<td>HashBlacklistedCache</td>
<th scope="row">HashBlacklistedCache</th>
<td>#[blacklistcache.size]#</td>
<td></td>
<td></td>
@ -259,13 +227,14 @@
<td></td>
</tr>
<tr class="TableCellLight">
<td>Search Event Cache</td>
<th scope="row">Search Event Cache</th>
<td>#[searchevent.size]#</td>
<td>#[searchevent.hit]#</td>
<td>#[searchevent.miss]#</td>
<td>#[searchevent.insert]#</td>
<td>#[searchevent.delete]#</td>
</tr>
</tbody>
</table>
#%env/templates/footer.template%#

@ -1996,7 +1996,7 @@ Attributes==属性
#File: Performance_p.html
#---------------------------
<html lang="en">==<html lang="cn">
<html lang="en">==<html lang="zh">
Performance Settings==性能设置
Memory Settings==内存设置
Memory reserved for <abbr title="Java Virtual Machine">JVM</abbr>==<abbr title="Java Virtual Machine">JVM</abbr>内存设置
@ -2039,9 +2039,10 @@ Remote Search:==远端搜索:
#File: PerformanceMemory_p.html
#---------------------------
<html lang="en">==<html lang="zh">
Performance Settings for Memory==内存性能设置
refresh graph==刷新图表
Memory Usage:==内存使用:
Memory Usage==内存使用
After Startup==启动后
After Initializations==初始化后
before GC==GC前
@ -2058,18 +2059,13 @@ total memory taken from the OS==操作系统分配内存
free memory in the JVM within total amount==JVM空闲内存
>Used<==>已用<
used memory in the JVM within total amount==JVM已用内存
#EcoTable RAM Index:==EcoTabelle RAM Index:
Table RAM Index:==Table使用内存:
Table RAM Index==Table使用内存
>Size==>大小
>Key==>关键字
>Value==>值
#FlexTable RAM Index:==FlexTabelle RAM Index:
#Table</td>==Table</td>
Chunk Size<==块大小<
#Count</td>==Anzahl</td>
Used Memory<==已用内存<
#Node Caches:==Knoten Cache:
Object Index Caches:==Object索引缓存:
Object Index Caches==Object索引缓存
Needed Memory==所需内存大小
Object Read Caches==Object读缓存
@ -2087,7 +2083,7 @@ MB (miss)==MB (丢失)
Stop Grow when less than #[objectCacheStopGrow]# MB available left==可用内存低于 #[objectCacheStopGrow]# MB时停止增长
Start Shrink when less than #[objectCacheStartShrink]# MB availabe left==可用内存低于 #[objectCacheStartShrink]# MB开始减少
Other Caching Structures:==其他缓存结构:
Other Caching Structures==其他缓存结构
Type</td>==类型</td>
>Hit<==>命中<
>Miss<==>丢失<

@ -2471,11 +2471,12 @@ Remote Search:==Remote Suche:
#File: PerformanceMemory_p.html
#---------------------------
<html lang="en">==<html lang="de">
Performance Settings for Memory==Performanceeinstellungen für Speicher
refresh graph==Aktualisiere Diagramm
simulate short memory status==Simuliere kurzen Speicherstatus
use Standard Memory Strategy</label> (current: #[memoryStrategy]#)==Verwende Standard Speicher-Strategie</label> (Aktuell: #[memoryStrategy]#)
Memory Usage:==Speichernutzung:
Memory Usage==Speichernutzung
After Startup==Nach Start
After Initializations==Nach Initialisierungen
before GC==vor GC
@ -2492,22 +2493,19 @@ total memory taken from the OS==gesamter vom Betriebssystem zugewiesener Speiche
free memory in the JVM within total amount==freier Speicher in der JVM innerhalb des Gesamten Speichers
>Used<==>Belegt<
used memory in the JVM within total amount==genutzter Speicher in der JVM innerhalb des Gesamten Speichers
Solr Resources:==Solr Resourcen:
Solr Resources==Solr Resourcen
>Class<==>Klasse<
>Type<==>Typ<
>Statistics<==>Statistiken<
>Size<==>Größe<
#EcoTable RAM Index:==EcoTabelle RAM Index:
Table RAM Index:==Tabelle RAM Speicher Index:
Table RAM Index==Tabelle RAM Speicher Index
>Key==>Schlüssel
>Value==>Wert
#FlexTable RAM Index:==FlexTabelle RAM Index:
Table</td>==Tabelle</td>
Chunk Size<==Chunk Größe<
#Count</td>==Anzahl</td>
Used Memory<==Benutzter Speicher<
#Node Caches:==Knoten Cache:
Object Index Caches:==Objekt Index Caches:
Object Index Caches==Objekt Index Caches
Needed Memory==Benötigter Speicher
Object Read Caches==Objekt Lese Caches
@ -2525,7 +2523,7 @@ MB (miss)==MB (Verfehler)
Stop Grow when less than #[objectCacheStopGrow]# MB available left==Beende Erweiterung wenn weniger als #[objectCacheStopGrow]# MB verfügbar sind
Start Shrink when less than #[objectCacheStartShrink]# MB availabe left==Starte Verkleinerung wenn weniger als #[objectCacheStartShrink]# MB verfügbar sind
Other Caching Structures:==Andere Zwischenspeicher Strukturen:
Other Caching Structures==Andere Zwischenspeicher Strukturen
>Hit<==>Treffer<
>Miss<==>Verfehler<
Insert<==Einfügen<

@ -1543,8 +1543,9 @@ milliseconds==millisecondes
#File: PerformanceMemory_p.html
#---------------------------
<html lang="en">==<html lang="fr">
Performance Settings for Memory==Param&egrave;tre de performance pour la m&eacute;moire
Memory Usage:==Utilisation m&eacute;moire
Memory Usage==Utilisation m&eacute;moire
After Startup==Apr&egrave;s d&eacute;marrage
After Initializations==Apr&egrave;s initialisation
before GC==avant GC
@ -1566,7 +1567,6 @@ Re-Configuration of Startup Paramenters:==Reconfiguration des param&egrave;tres
Changes take effect after <strong>re-start</strong> of YaCy==Les modifications prendront effet apr&egrave;s le <strong>red&eacute;marrage</strong> de YaCy
RAM Cache for Database Files:==Cache RAM pour les fichiers de base de donn&eacute;es:
Chunk Size==Taille de bloc
#Slots==
Memory Occupation==Occupation m&eacute;moire
Needed<br />==N&eacute;cessaire<br />
DB Size==Taille de la DB

@ -6230,7 +6230,7 @@
<source>use Standard Memory Strategy&lt;/label&gt; (current: #[memoryStrategy]#)</source>
</trans-unit>
<trans-unit id="6bf48ab8" xml:space="preserve" approved="no" translate="yes">
<source>Memory Usage:</source>
<source>Memory Usage</source>
</trans-unit>
<trans-unit id="6d6a0ff9" xml:space="preserve" approved="no" translate="yes">
<source>After Startup</source>
@ -6284,7 +6284,7 @@
<source>used memory in the JVM within total amount</source>
</trans-unit>
<trans-unit id="e0e37cb3" xml:space="preserve" approved="no" translate="yes">
<source>Solr Resources:</source>
<source>Solr Resources</source>
</trans-unit>
<trans-unit id="4836cba2" xml:space="preserve" approved="no" translate="yes">
<source>&gt;Class&lt;</source>
@ -6299,7 +6299,7 @@
<source>&gt;Size&lt;</source>
</trans-unit>
<trans-unit id="f11c3dc" xml:space="preserve" approved="no" translate="yes">
<source>Table RAM Index:</source>
<source>Table RAM Index</source>
</trans-unit>
<trans-unit id="1d5541" xml:space="preserve" approved="no" translate="yes">
<source>&gt;Key</source>
@ -6317,7 +6317,7 @@
<source>Used Memory&lt;</source>
</trans-unit>
<trans-unit id="77cb709a" xml:space="preserve" approved="no" translate="yes">
<source>Object Index Caches:</source>
<source>Object Index Caches</source>
</trans-unit>
<trans-unit id="18d153cc" xml:space="preserve" approved="no" translate="yes">
<source>Needed Memory</source>
@ -6365,7 +6365,7 @@
<source>Start Shrink when less than #[objectCacheStartShrink]# MB availabe left</source>
</trans-unit>
<trans-unit id="75579689" xml:space="preserve" approved="no" translate="yes">
<source>Other Caching Structures:</source>
<source>Other Caching Structures</source>
</trans-unit>
<trans-unit id="38c0467" xml:space="preserve" approved="no" translate="yes">
<source>&gt;Hit&lt;</source>

@ -2577,11 +2577,12 @@ Remote Search:==Удалённый поиск:
#File: PerformanceMemory_p.html
#---------------------------
<html lang="en">==<html lang="ru">
Performance Settings for Memory==Настройки производительности памяти
refresh graph==Обновлять диаграмму
simulate short memory status==Имитация состояния малого размера памяти
use Standard Memory Strategy</label> (current: #[memoryStrategy]#)==Использовать стратегию стандартного размера памяти</label> (Текущая: #[memoryStrategy]#)
Memory Usage:==Использование памяти:
Memory Usage==Использование памяти
After Startup==После запуска
After Initializations==После инициализации
before GC==до GC
@ -2599,22 +2600,19 @@ total memory taken from the OS==всего памяти, выделенной о
free memory in the JVM within total amount==свободная память в Java без учёта всей памяти
>Used<==>Используется<
used memory in the JVM within total amount==используемая память в Java без учёта всей памяти
Solr Resources:==Ресурсы базы данных Solr:
Solr Resources==Ресурсы базы данных Solr
>Class<==>Класс<
>Type<==>Тип<
>Statistics<==>Статистика<
>Size<==>Размер<
#EcoTable RAM Index:==EcoTabelle RAM Index:
Table RAM Index:==Таблица индекса RAM:
Table RAM Index==Таблица индекса RAM
>Key==>Ключ
>Value==>Значение
#FlexTable RAM Index:==FlexTabelle RAM Index:
Table</td>==Таблица</td>
Chunk Size<==Размер части<
#Count</td>==Счёт</td>
Used Memory<==Использовано памяти<
#Node Caches:==Кэш нода:
Object Index Caches:==Кэш индекса объектов:
Object Index Caches==Кэш индекса объектов
Needed Memory==Необходимо памяти
Object Read Caches==Чтение кэшированных объектов
@ -2632,7 +2630,7 @@ MB (miss)==MB (попадания)
Stop Grow when less than #[objectCacheStopGrow]# MB available left==Остановить рост при сокращении до #[objectCacheStopGrow]# MB из доступной
Start Shrink when less than #[objectCacheStartShrink]# MB availabe left==Начать сжатие при сокращении до #[objectCacheStartShrink]# MB из доступной
Other Caching Structures:==Другие структуры кэша:
Other Caching Structures==Другие структуры кэша
>Hit<==>Удары<
>Miss<==>Попадания<
Insert<==Вставлено<

@ -1174,8 +1174,9 @@ Maximum URLs currently assigned==Maximalny pocet prave priradenych URL adries
#File: PerformanceMemory_p.html
#---------------------------
<html lang="en">==<html lang="sk">
Performance Settings for Memory==Nastavenia vykonu pamate
Memory Usage:==Vyuzitie pamate:
Memory Usage==Vyuzitie pamate
After Startup==Po starte
After Initializations==Po inicializacii
before GC==pred GC

@ -2212,9 +2212,10 @@ MByte==МБайт
#File: PerformanceMemory_p.html
#---------------------------
<html lang="en">==<html lang="uk">
Performance Settings for Memory==Налаштування швидкодії для пам’яті
<label for="autoreload">refresh graph==<label for="autoreload">оновлювати графік
Memory Usage:==Використання пам’яті:
Memory Usage==Використання пам’яті
After Startup==Після запуску
After Initializations==Після підготовки
before GC==перед GC
@ -2231,18 +2232,15 @@ total memory taken from the OS==вся пам’ять, що береться з
free memory in the JVM within total amount==вільна пам’ять в JVM з загального об’єму
>Used<==>Використано<
used memory in the JVM within total amount==використана пам’ять в JVM з загального об’єму
#EcoTable RAM Index:==Індекс RAM ЕкоТаблиці:
Table RAM Index:==Пам’ять RAM індексу таблиць:
Table RAM Index==Пам’ять RAM індексу таблиць
>Size==>Розмір
>Key==>Ключі
>Value==>Значення
#FlexTable RAM Index:==RAM-індекс Flex-таблиці:
Table</td>==Таблиця</td>
Chunk Size<==Розмір шматка<
#Count</td>==Кількість</td>
Used Memory<==Використано пам’яті<
#Node Caches:==Кеші вузла:
Object Index Caches:==Кеші індексу об’єктів:
Object Index Caches==Кеші індексу об’єктів
Needed Memory==Потрібна пам’ять
Object Read Caches==Кеші читання об’єктів
@ -2260,7 +2258,7 @@ MB (miss)==MБ (невдача)
Stop Grow when less than #[objectCacheStopGrow]# MB available left==Зупинити зростання, коли доступно менше #[objectCacheStopGrow]# MБ
Start Shrink when less than #[objectCacheStartShrink]# MB availabe left==Запустити скорочення, коли доступно менше #[objectCacheStartShrink]# MБ
Other Caching Structures:==Інші кешувальні структури:
Other Caching Structures==Інші кешувальні структури
Type</td>==Тип</td>
>Hit<==>Успіх<
>Miss<==>Невдача<

Loading…
Cancel
Save