浏览 135
分享
4.11. CouchDB Internal Services
4.11.1. CouchDB Daemonized Mini Apps
[daemons]
authcache
This daemon provides authentication caching to avoid repeated openingand closing of the __users database for each request requiringauthentication:- [daemons]
authcache={couch_auth_cache, start_link, []}
- [daemons]
compaction_daemon
Automatic compaction daemon:- [daemons]
compaction_daemon={couch_compaction_daemon, start_link, []}
- [daemons]
external_manager
_External processes manager:- [daemons]
externalmanager={couch_external_manager, start_link, []}
- [daemons]
httpd
Node-local HTTP server daemon (default port: _5986):- [daemons]
httpd={couchhttpd, start_link, []}
- [daemons]
index_server
The _couch_index application is responsible for managing all of thedifferent types of indexers. This manages the process handling forkeeping track of the index state as well as managing the updater andcompactor handling:- [daemons]
index_server={couch_index_server, start_link, []}
- [daemons]
query_servers
Query servers manager:- [daemons]
query_servers={couch_query_servers, start_link, []}
- [daemons]
replicator_manager
Replications manager:- [daemons]
replicator_manager={couch_replicator_manager, start_link, []}
- [daemons]
stats_aggregator
Runtime statistics aggregator:- [daemons]
stats_aggregator={couch_stats_aggregator, start, []}
- [daemons]
stats_collector
Runtime statistics collector:- [daemons]
stats_collector={couch_stats_collector, start, []}
- [daemons]
uuids
UUIDs generator daemon:- [daemons]
uuids={couch_uuids, start, []}
- [daemons]
vhosts
Virtual hosts manager. Provides dynamic add ofvhosts without restart, wildcards support and dynamic routing viapattern matching- [daemons]
vhosts={couch_httpd_vhost, start_link, []}
- [daemons]
评论列表