-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
56 lines (55 loc) · 3.7 KB
/
home.html
File metadata and controls
56 lines (55 loc) · 3.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<div class="jumbotron">
<div class="container">
<div class="row">
<div class="col-md-4">
<img src="pgshield-logo.png" alt="pgShield Logo" class="img-fluid">
</div>
<div class="col-md-8">
<h1 class="display-4">Welcome to pgShield</h1>
<p class="lead">High-Performance PostgreSQL Connection Pooling, Optimization, and Server Gateway</p>
<hr class="my-4">
<p>pgShield is a powerful connection pooling, optimization, and server gateway system designed to enhance the performance, scalability, and accessibility of your PostgreSQL databases. With pgShield, you can:</p>
<ul>
<li>Efficiently manage and reuse database connections</li>
<li>Reduce query parsing overhead with prepared statement caching</li>
<li>Optimize SQL queries for improved performance</li>
<li>Distribute client connections across multiple PostgreSQL servers</li>
<li>Access multiple PostgreSQL servers seamlessly through a unified gateway</li>
<li>Interact with PostgreSQL using native protocols or HTTP REST interfaces</li>
</ul>
<p>pgShield is built with Rust, ensuring high performance, memory safety, and concurrency. It provides a seamless integration with your existing PostgreSQL infrastructure, allowing you to scale your applications with ease.</p>
<a class="btn btn-primary btn-lg" href="#" role="button" data-page="documentation">Get Started</a>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-4">
<h2>Efficient Connection Pooling</h2>
<p>pgShield maintains a pool of reusable database connections, reducing the overhead of establishing new connections for each request. It ensures optimal utilization of database resources and improves application performance.</p>
</div>
<div class="col-md-4">
<h2>Prepared Statement Caching</h2>
<p>With pgShield, you can cache prepared statements, eliminating the need to parse and prepare queries repeatedly. This feature significantly reduces query latency and improves overall system throughput.</p>
</div>
<div class="col-md-4">
<h2>Advanced Query Optimization</h2>
<p>pgShield analyzes and optimizes SQL queries, identifying performance bottlenecks and applying optimization techniques. It helps in minimizing database load and improving query execution times.</p>
</div>
</div>
<div class="row mt-4">
<div class="col-md-4">
<h2>PostgreSQL Server Gateway</h2>
<p>pgShield acts as a gateway to multiple PostgreSQL servers, allowing you to treat them as a single entity. You can access and manage multiple databases through a unified interface, simplifying database administration and application development.</p>
</div>
<div class="col-md-4">
<h2>Native Protocol Support</h2>
<p>pgShield supports native PostgreSQL protocols, enabling seamless communication between clients and servers. You can use your existing PostgreSQL client libraries and tools to interact with pgShield, making integration effortless.</p>
</div>
<div class="col-md-4">
<h2>HTTP REST Interfaces</h2>
<p>In addition to native protocols, pgShield provides HTTP REST interfaces for interacting with PostgreSQL. You can perform database operations using standard HTTP methods, making it easy to integrate with web applications and services.</p>
</div>
</div>
</div>