[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: svn commit: r1078990 - in /subversion/trunk: ./ subversion/libsvn_fs_fs/caching.c subversion/libsvn_fs_fs/fs.h subversion/libsvn_fs_fs/fs_fs.c

From: Daniel Shahaf <d.s_at_daniel.shahaf.name>
Date: Tue, 8 Mar 2011 00:40:55 +0200

stefan2_at_apache.org wrote on Mon, Mar 07, 2011 at 22:28:25 -0000:
> Modified: subversion/trunk/subversion/libsvn_fs_fs/caching.c
> URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_fs_fs/caching.c?rev=1078990&r1=1078989&r2=1078990&view=diff
> ==============================================================================
> --- subversion/trunk/subversion/libsvn_fs_fs/caching.c (original)
> +++ subversion/trunk/subversion/libsvn_fs_fs/caching.c Mon Mar 7 22:28:25 2011
> @@ -227,5 +227,28 @@ svn_fs_fs__initialize_caches(svn_fs_t *f
> SVN_ERR(svn_cache__set_error_handler(ffd->txdelta_window_cache,
> warn_on_cache_errors, fs, pool));
>
> + /* initialize node revision cache, if caching has been enabled */
> + if (svn_fs__get_global_membuffer_cache())
> + {
> + SVN_ERR(svn_cache__create_membuffer_cache(&(ffd->node_revision_cache),
> + svn_fs__get_global_membuffer_cache(),
> + svn_fs_fs__serialize_node_revision,
> + svn_fs_fs__deserialize_node_revision,
> + APR_HASH_KEY_STRING,
> + apr_pstrcat(pool,
> + prefix,
> + "NODEREVS",
> + NULL),
> + fs->pool));
> + }

/me wonders if we should maintain somewhere a list of all the "cache key" namespaces...

(i.e., should someone else use the "fsfs:$uuid:NODEREVS" prefix, the end
results won't be nice :-[ )
Received on 2011-03-07 23:42:10 CET

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.