⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 proxycache.sdf

📁 OpenLdap是LDAP的开源项目
💻 SDF
字号:
# $OpenLDAP: pkg/openldap-guide/admin/proxycache.sdf,v 1.8.2.2 2007/01/02 21:43:43 kurt Exp $# Copyright 2003-2007 The OpenLDAP Foundation, All Rights Reserved.# COPYING RESTRICTIONS APPLY, see COPYRIGHT.H1: The Proxy Cache EngineLDAP servers typically hold one or more subtrees of a DIT. Replica(or shadow) servers hold shadow copies of entries held by one ormore master servers.  Changes are propagated from the master serverto replica (slave) servers using LDAP Sync or {{slurpd}}(8). AnLDAP cache is a special type of replica which holds entriescorresponding to search filters instead of subtrees.H2: OverviewThe proxy cache extension of slapd is designed to improve theresponseiveness of the ldap and meta backends. It handles a searchrequest (query)by first determining whether it is contained in any cached searchfilter. Contained requests are answered from the proxy cache's localdatabase. Other requests are passed on to the underlying ldap ormeta backend and processed as usual.E.g. {{EX:(shoesize>=9)}} is contained in {{EX:(shoesize>=8)}} and{{EX:(sn=Richardson)}} is contained in {{EX:(sn=Richards*)}}Correct matching rules and syntaxes are used while comparingassertions for query containment. To simplify the query containmentproblem, a list of cacheable "templates" (defined below) is specifiedat configuration time. A query is cached or answered only if itbelongs to one of these templates. The entries corresponding tocached queries are stored in the proxy cache local database whileits associated meta information (filter, scope, base, attributes)is stored in main memory. A template is a prototype for generating LDAP search requests.Templates are described by a prototype search filter and a list ofattributes which are required in queries generated from the template.The representation for prototype filter is similar to RFC 2254,except that the assertion values are missing. Examples of prototypefilters are: (sn=),(&(sn=)(givenname=)) which are instantiated bysearch filters (sn=Doe) and (&(sn=Doe)(givenname=John)) respectively.The cache replacement policy removes the least recently used (LRU)query and entries belonging to only that query. Queries are alloweda maximum time to live (TTL) in the cache thus providing weakconsistency. A background task periodically checks the cache forexpired queries and removes them.The Proxy Cache paper({{URL:http://www.openldap.org/pub/kapurva/proxycaching.pdf}}) providesdesign and implementation details.H2: Proxy Cache ConfigurationThe cache configuration specific directives described below mustappear after a {{EX:overlay proxycache}} directive within a{{EX:"database meta"}} or {{EX:database ldap}} section ofthe server's {{slapd.conf}}(5) file.H3: Setting cache parameters> proxyCache <DB> <maxentries> <nattrsets> <entrylimit> <period>This directive enables proxy caching and sets general cache parameters.The <DB> parameter specifies which underlying database is to beused to hold cached entries.  It should be set to {{EX:bdb}},{{EX:hdb}}, or {{EX:ldbm}}.  The <maxentries> parameter specifiesthe total number of entries which may be held in the cache.  The<nattrsets> parameter specifies the total number of attribute sets(as specified by the {{EX:proxyAttrSet}} directive) that may be defined.The <entrylimit> parameter specifies the maximum number of entriesin a cachable query.  The <period> specifies the consistencycheck period (in seconds).  In each period, queries with expiredTTLs are removed.H3: Defining attribute sets> proxyAttrset <index> <attrs...>Used to associate a set of attributes to an index. Each attributeset is associated with an index number from 0 to <numattrsets>-1.These indices are used by the proxyTemplate directive to definecacheable templates.H3: Specifying cacheable templates > proxyTemplate <prototype_string> <attrset_index> <TTL>Specifies a cacheable template and the "time to live" (in sec) <TTL>for queries belonging to the template. A template is described byits prototype filter string and set of required attributes identifiedby <attrset_index>.H3: ExampleAn example {{slapd.conf}}(5) database section for a caching serverwhich proxies for the {{EX:"dc=example,dc=com"}} subtree heldat server {{EX:ldap.example.com}}. >	database 	ldap>	suffix 		"dc=example,dc=com" >	rootdn 		"dc=example,dc=com" >	uri    		ldap://ldap.example.com/dc=example%2cdc=com>	overlay proxycache>	proxycache    bdb 100000 1 1000 100>	proxyAttrset  0 mail postaladdress telephonenumber >	proxyTemplate (sn=) 0 3600>	proxyTemplate (&(sn=)(givenName=)) 0 3600>	proxyTemplate (&(departmentNumber=)(secretary=*)) 0 3600>>	cachesize 20>	directory ./testrun/db.2.a>	index       objectClass eq>	index       cn,sn,uid,mail  pres,eq,subH4: Cacheable QueriesA LDAP search query is cacheable when its filter matches one of thetemplates as defined in the "proxyTemplate" statements and when it referencesonly the attributes specified in the corresponding attribute set. In the example above the attribute set number 0 defines that only theattributes: {{EX:mail postaladdress telephonenumber}} are cached for the followingproxyTemplates.H4: Examples:>	Filter: (&(sn=Richard*)(givenName=jack)) >	Attrs: mail telephoneNumber    is cacheable, because it matches the template {{EX:(&(sn=)(givenName=))}} and its    attributes are contained in proxyAttrset 0.>	Filter: (&(sn=Richard*)(telephoneNumber))>	Attrs: givenName     is not cacheable, because the filter does not match the template,    nor is the attribute givenName stored in the cache>	Filter: (|(sn=Richard*)(givenName=jack))>	Attrs: mail telephoneNumber    is not cacheable, because the filter does not match the template ( logical    OR "|" condition instead of logical AND "&" )

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -