summaryrefslogtreecommitdiff
path: root/doc/en/queryCache.html
blob: 65b18ac6fb434efc7f34363bcc4e7d47c3fd7c82 (plain)
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Query Cache</title>
<link href="../screen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="header">
  <h1><img src="../images/logo.gif" alt="pgpoolAdmin" /></h1>
</div>
<div id="menu">
  <ul>
    <li><a href="../index_en.html">Introduction</a></li>
    <li><a href="install.html">Install</a></li>
    <li><a href="login.html">Login</a></li>
    <li><a href="status.html">pgpool Status</a></li>
    <li><a href="nodeServerStatus.html">Node Status</a></li>
    <li><a href="queryCache.html">Query Cache</a></li>
    <li><a href="systemDb.html">Partitioning Rule</a></li>
    <li><a href="pgconfig.html">pgpool.conf Setting</a></li>
    <li><a href="config.html">pgpoolAdmin Setting</a></li>
    <li><a href="changePassword.html">Change Password</a></li>
    <li><a href="logout.html">Logout</a></li>
    <li><a href="errorCode.html">Error Code</a></li>
  </ul>
</div>
<div id="content">

  <h2>Query Cache</h2>
  <form action="queryCache.php" method="post" name="queryCache" id="queryCache">
    <h3>Summary</h3>

    <p>It is possible to cache the SELECT query, if enable_query_cache of pgpool.conf is true.</p>
    <h3>Feature</h3>
	<p>It is possible to search for the data that exists in the query cache. It searches for the query string and the database name, and it processes it by the partial agreement retrieval. It becomes a search for the logical product with the query string and the database name. 
    <table>
      <tbody>
        <tr>       <tr>
        <td nowrap="nowrap" class="column">Query</td>

        <td><input name="qQueryStr" type="text" id="qQueryStr" size="50" value=""/>
        </td>
      </tr>
      <tr>
        <td nowrap="nowrap" class="column">Database</td>
        <td><input name="qDb" type="text" id="qDb" size="50" value=""/></td>
      </tr>
      </tbody>

      <tfoot>
      <tr><td colspan="2">
      <input type="submit" name="search" value="Search" />
      <input type="submit" name="clear" value="Clear" />
      </td></tr>
    </table>
    <h3>Query cache list</h3>
	<p>

The query string, database name and create time which existing in cache is displayed. When "Query", "Database" and "Create Time" clicked, the records is sorted. Whenever clicking, it is sorted in the ascending order or the descending order. </p>

	<p>When the check is put in the check box in the left of the data that wants to be deleted, and the deletion button is pushed, it is deleted.
</p>
    <table>
      <tbody>
        <tr>
          <th><input type="checkbox" name="all" value="" /></th>
          <th>Query</th>

          <th>Database</th>
          <th>Create Time</th>
        </tr>
            </tbody>
      <tfoot>
      <tr><td colspan="4">
      <input type="submit" name="ButtonName" value="Delete" />
      </td></tr>

    </table>
</div>
<div id="footer">
  <address>
  Version 2.1<br />
  Copyright &copy; 2006 - 2008 <a href="http://pgpool.projects.postgresql.org/">pgpool Global Development Group</a>. All rights reserved.
  </address></div>
</html>