我正在尝试使用该memcachec
插件从 memcached 中读取数据,但是当我使用此配置时:
<Plugin "memcachec">
<Page "plugin_instance">
Key "KEY1"
Server "localhost"
...
</Page>
</Plugin>
我得到了memcachec plugin: Option 'server' not allowed here.
,如果我删除我得到的服务器选项memcachec plugin: 'Server' missing in 'Page' block.
。我检查了 memcachec 的来源并且有这个代码(memcachec.c,第 329 行):
if (strcasecmp ("Server", child->key) == 0)
status = cmc_config_add_string ("Server", &page->server, child);
if (strcasecmp ("Key", child->key) == 0)
status = cmc_config_add_string ("Key", &page->key, child);
else if (strcasecmp ("Match", child->key) == 0)
/* Be liberal with failing matches => don't set `status'. */
cmc_config_add_match (page, child);
else
{
WARNING ("memcachec plugin: Option `%s' not allowed here.", child->key);
status = -1;
}
似乎第二个if
应该是else if
插件工作。这是一个错误吗?我在哪里报告?在官方修复到来之前,在本地修复它的正确方法是什么?