2

我有一个 NCache 实现(在一对服务器上以复制格式配置,如果这有什么不同的话),我想编写脚本清除缓存。我有一个 powershell 脚本,它使用适当的参数调用 NCache clearcache.exe 工具(在 \bin\tools 中),但该工具随后会提示我确认我确实这样做了清除非空缓存(为什么是, 我愿意!)。

我查看了命令的内联帮助(很少)和在线 NCache 文档(http://www.alachisoft.com/resources/docs/ncache/help/main.html),但没有任何运气来获得其他帮助参数(如--force选项等)。

有没有这样的选项可以让我在不与脚本交互的情况下清除缓存?是否有其他途径可以完成同样的事情?

4

2 回答 2

2

如果您查看此处的第 35 页(NCache 命令行工具指南),您会看到可以使用它/F来强制清除缓存。

于 2016-01-29T14:51:45.073 回答
2

打开 CMD 并转到 NCache 安装文件夹然后 bin/tools 对我来说是C:\Program Files\NCache\bin\tools

运行clearcache.exe /?你会得到

C:\Program Files\NCache\bin\tools>clearcache.exe /?

Alachisoft (R) NCache Utility ClearCache. Version 4.6.0.0 
Copyright (C) Alachisoft 2015. All rights reserved.

用法:clearcache cache-name [option[...]].

争论:

缓存名称

Specifies one or more name(s) of caches separated by space registered on
the server. The cache(s) with this/these name(s) is/are started on the
server. Note: Space-separated cache names are to be specified in case of
multiple caches.

选项:

/w /webcontent (Only avaiable in Enterprise edition)
Clear Javascript and CSS only.

/F /forceclear

Force the clearing of the cache. If not specified, the user is asked before
clearing the cache.

/G /nologo

Suppresses display of the logo banner.

/?

Displays a detailed help screen

/F所以使用or in full form/forceclear选项运行 clearcache

于 2016-02-03T11:18:25.357 回答