Skip to content

Remove mentions of Prevalence cache from documentation #3532

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 1 addition & 26 deletions doc/reference/modules/nhibernate_caches.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,6 @@
<para>
Several cache providers have been contributed by NHibernate users:
<variablelist>
<varlistentry>
<term><classname>NHibernate.Caches.Prevalence</classname></term>
<listitem>
<para>
Uses <classname>Bamboo.Prevalence</classname> as the cache provider. Open the
file <filename>Bamboo.Prevalence.license.txt</filename> for more information about its license;
you can also visit its <ulink url="http://bbooprevalence.sourceforge.net/">website</ulink>. This
provider is available for the .Net Framework only. Also see <xref linkend="NHibernate.Caches.Prevalence" />.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><classname>NHibernate.Caches.SysCache</classname></term>
<listitem>
Expand Down Expand Up @@ -158,8 +147,7 @@
<listitem>
<para>
Choose the cache provider you want to use and copy its assembly in your assemblies directory.
(For example, <filename>NHibernate.Caches.Prevalence.dll</filename> or
<filename>NHibernate.Caches.SysCache.dll</filename>.)
(For example, <filename>NHibernate.Caches.SysCache.dll</filename>.)
</para>
</listitem>
<listitem>
Expand Down Expand Up @@ -279,19 +267,6 @@
</para>
</section>

<section id="NHibernate.Caches.Prevalence">
<title>Prevalence Cache Configuration</title>
<para>
There is only one configurable parameter: <literal>prevalenceBase</literal>. This is the directory on the
file system where the Prevalence engine will save data. It can be relative to the current directory or a
full path. If the directory doesn't exist, it will be created.
</para>
<para>
The <literal>prevalenceBase</literal> setting can only be set programmatically through the NHibernate
configuration object, by example with <literal>Configuration.SetProperty</literal>.
</para>
</section>

<section id="NHibernate.Caches.SysCache">
<title>SysCache Configuration</title>
<para>
Expand Down
13 changes: 0 additions & 13 deletions doc/reference/modules/performance.xml
Original file line number Diff line number Diff line change
Expand Up @@ -709,13 +709,6 @@ using(var iter = session
<entry></entry>
<entry>yes</entry>
</row>
<row>
<entry>Prevalence Cache</entry>
<entry><literal>NHibernate.Caches.Prevalence.PrevalenceCacheProvider, NHibernate.Caches.Prevalence</literal></entry>
<entry>memory, disk</entry>
<entry></entry>
<entry>yes</entry>
</row>
</tbody>
</tgroup>
</table>
Expand Down Expand Up @@ -877,12 +870,6 @@ using(var iter = session
<entry>yes</entry>
<entry>yes</entry>
</row>
<row>
<entry>PrevalenceCache</entry>
<entry>yes</entry>
<entry>yes</entry>
<entry>yes</entry>
</row>
</tbody>
</tgroup>
</table>
Expand Down
Loading