diff options
| author | theli <theli@6c8d7289-2bf4-0310-a012-ef5d649a1542> | 2005-05-17 08:25:04 +0000 |
|---|---|---|
| committer | theli <theli@6c8d7289-2bf4-0310-a012-ef5d649a1542> | 2005-05-17 08:25:04 +0000 |
| commit | 361f05978df14fe77aea6f522c9b0cb509e5d140 (patch) | |
| tree | 4f93a22653e01aef61ea475ad18ccd86addb6870 /htroot/Performance_p.html | |
| parent | c57306f6204d599e421cd93888fcf79c558fd9e8 (diff) | |
Multiple updates regarding the yacy seedUpload facility,
optional content parsers, thread pool configuration ...
Please help me testing if everything works correct.
*) Migration of yacy seedUpload functionality
See: http://www.yacy-forum.de/viewtopic.php?t=256
- new uploaders can now be easily introduced because of a new modulare uploader system
- default uploaders are: none, file, ftp
- adding optional uploader for scp
- each uploader provides its own configuration file that will be
included into the settings page using the new template include feature
- Each uploader can define its libx dependencies. If not all needed libs are
available, the uploader is deactivated automatically.
*) Migration of optional parsers
See: http://www.yacy-forum.de/viewtopic.php?t=198
- Parsers can now also define there libx dependencies
- adding parser for bzip compressed content
- adding parser for gzip compressed content
- adding parser for zip files
- adding parser for tar files
- adding parser to detect the mime-type of a file
this is needed by the bzip/gzip Parser.java
- adding parser for rtf files
- removing extra configuration file yacy.parser
the list of enabled parsers is now stored in the main config file
*) Adding configuration option in the performance dialog to configure
See: http://www.yacy-forum.de/viewtopic.php?t=267
- maxActive / maxIdle / minIdle values for httpd-session-threadpool
- maxActive / maxIdle / minIdle values for crawler-threadpool
*) Changing Crawling Filter behaviour
See: http://www.yacy-forum.de/viewtopic.php?p=2631
*) Replacing some hardcoded strings with the proper constants of the httpHeader class
*) Adding new libs to libx directory. This libs are
- needed by new content parsers
- needed by new optional seed uploader
- needed by SOAP API (which will be committed later)
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@126 6c8d7289-2bf4-0310-a012-ef5d649a1542
Diffstat (limited to 'htroot/Performance_p.html')
| -rw-r--r-- | htroot/Performance_p.html | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/htroot/Performance_p.html b/htroot/Performance_p.html index 9b965d967..f19d542ad 100644 --- a/htroot/Performance_p.html +++ b/htroot/Performance_p.html @@ -117,6 +117,35 @@ Changes take effect immediately</td> </form>
</table>
</p>
+
+<div class=small><b>Thread pool settings:</b></div>
+<form action="Performance_p.html" method="post" enctype="multipart/form-data">
+<table border="0" cellpadding="2" cellspacing="1" width="100%">
+<tr class="TableHeader" valign="bottom">
+<td class="small" width="150">Thread Pool</td>
+<td class="small" width="80">maximum Active</td>
+<td class="small" width="80">maximum Idle</td>
+<td class="small" width="80">minimum Idle</td>
+<td class="small">Full Description</td>
+</tr>
+#{pool}#
+<tr class="TableCellDark">
+<td class="small" align="left">#[name]#</td>
+<td class="small" align="right"><input name="#[name]#_maxActive" type="text" size="8" maxlength="8" value="#[maxActive]#"></td>
+<td class="small" align="right"><input name="#[name]#_maxIdle" type="text" size="8" maxlength="8" value="#[maxIdle]#"></td>
+<td class="small" align="right"><input name="#[name]#_minIdle" type="text" size="8" maxlength="8" value="#[minIdle]#"></td>
+<td class="small" align="left"></td>
+</tr>
+#{/pool}#
+<tr class="TableCellLight">
+<td class="small" align="left" colspan="5">
+<input type="submit" name="poolConfig" value="Enter new Threadpool Configuration">
+Changes take effect immediately</td>
+</tr>
+</table>
+</p></form>
+
+
#[footer]#
</body>
</html>
|
