对缓存策略中的句柄和sendfile增加设置警告

This commit is contained in:
GoEdgeLab
2022-08-27 18:39:36 +08:00
parent 6dee389dbc
commit 7a3bfce67e
2 changed files with 4 additions and 4 deletions

View File

@@ -43,14 +43,14 @@
<td class="color-border">缓存文件句柄缓存</td> <td class="color-border">缓存文件句柄缓存</td>
<td> <td>
<input type="text" name="fileOpenFileCacheMax" maxlength="6" value="0" style="width: 10em"/> <input type="text" name="fileOpenFileCacheMax" maxlength="6" value="0" style="width: 10em"/>
<p class="comment">保持在内存中的缓存文件句柄的数量,提升缓存文件打开速度,建议数量不超过缓存文件数量的十分之一。</p> <p class="comment"><pro-warning-label></pro-warning-label>保持在内存中的缓存文件句柄的数量,提升缓存文件打开速度,建议数量不超过缓存文件数量的十分之一。</p>
</td> </td>
</tr> </tr>
<tr v-show="teaIsPlus"> <tr v-show="teaIsPlus">
<td class="color-border">开启Sendfile</td> <td class="color-border">开启Sendfile</td>
<td> <td>
<checkbox name="fileEnableSendfile"></checkbox> <checkbox name="fileEnableSendfile"></checkbox>
<p class="comment"><plus-label></plus-label>使用sendfile提升发送缓存文件的效率。</p> <p class="comment"><pro-warning-label></pro-warning-label><plus-label></plus-label>使用sendfile提升发送缓存文件的效率。</p>
</td> </td>
</tr> </tr>
</tbody> </tbody>

View File

@@ -52,14 +52,14 @@
<td class="color-border">缓存文件句柄缓存</td> <td class="color-border">缓存文件句柄缓存</td>
<td> <td>
<input type="text" name="fileOpenFileCacheMax" v-model="fileOpenFileCacheMax" maxlength="6" value="0" style="width: 10em"/> <input type="text" name="fileOpenFileCacheMax" v-model="fileOpenFileCacheMax" maxlength="6" value="0" style="width: 10em"/>
<p class="comment">保持在内存中的缓存文件句柄的数量,提升缓存文件打开速度,建议数量不超过缓存文件数量的十分之一。</p> <p class="comment"><pro-warning-label></pro-warning-label>保持在内存中的缓存文件句柄的数量,提升缓存文件打开速度,建议数量不超过缓存文件数量的十分之一。</p>
</td> </td>
</tr> </tr>
<tr v-show="teaIsPlus"> <tr v-show="teaIsPlus">
<td class="color-border">开启Sendfile</td> <td class="color-border">开启Sendfile</td>
<td> <td>
<checkbox name="fileEnableSendfile" v-model="cachePolicy.options.enableSendfile"></checkbox> <checkbox name="fileEnableSendfile" v-model="cachePolicy.options.enableSendfile"></checkbox>
<p class="comment"><plus-label></plus-label>使用sendfile提升发送缓存文件的效率。</p> <p class="comment"><pro-warning-label></pro-warning-label><plus-label></plus-label>使用sendfile提升发送缓存文件的效率。</p>
</td> </td>
</tr> </tr>
</tbody> </tbody>