This commit is contained in:
2026-09-06 04:04:59 +03:00
commit 83a975ba3c
44 changed files with 6558 additions and 0 deletions
+54
View File
@@ -0,0 +1,54 @@
<template>
<article class="prose dark:prose-invert max-w-full">
<p>
Please provide basic information about the configuration of your hardware
on which the PostgreSQL database is running. Results will be calculated
after clicking the "Generate" button
</p>
<p>More information about "DB Type" setting:</p>
<ul>
<li>
<p>Web Application (web)</p>
<ul>
<li>Typically CPU-bound</li>
<li>DB much smaller than RAM</li>
<li>90% or more simple queries</li>
</ul>
</li>
<li>
<p>Online Transaction Processing (oltp)</p>
<ul>
<li>Typically CPU- or I/O-bound</li>
<li>DB slightly larger than RAM to 1TB</li>
<li>20-40% small data write queries</li>
<li>Some long transactions and complex read queries</li>
</ul>
</li>
<li>
<p>Data Warehouse (dw)</p>
<ul>
<li>Typically I/O- or RAM-bound</li>
<li>Large bulk loads of data</li>
<li>Large complex reporting queries</li>
<li>Also called "Decision Support" or "Business Intelligence"</li>
</ul>
</li>
<li>
<p>Desktop application</p>
<ul>
<li>Not a dedicated database</li>
<li>A general workstation, perhaps for a developer</li>
</ul>
</li>
<li>
<p>Mixed type of application</p>
<ul>
<li>Mixed DW and OLTP characteristics</li>
<li>wide mixture of queries</li>
</ul>
</li>
</ul>
</article>
</template>