diff options
author | Keith Bostic <keith@wiredtiger.com> | 2016-04-15 14:50:31 -0400 |
---|---|---|
committer | Keith Bostic <keith@wiredtiger.com> | 2016-04-15 14:50:31 -0400 |
commit | 7af29705440046d592b032e67f2fb39cb304bff4 (patch) | |
tree | 3ab5e53c48ec26329b426158eedea23300ed74eb /src/docs | |
parent | 39a9629e82fd8473fe097aaa668d64e0370582fe (diff) | |
download | mongo-7af29705440046d592b032e67f2fb39cb304bff4.tar.gz |
WT-2553: Document in-memory configuration and WT_CACHE_FULL error return
Diffstat (limited to 'src/docs')
-rw-r--r-- | src/docs/error-handling.dox | 3 | ||||
-rw-r--r-- | src/docs/programming.dox | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/docs/error-handling.dox b/src/docs/error-handling.dox index d91a126ee21..7b5fdd7e9b2 100644 --- a/src/docs/error-handling.dox +++ b/src/docs/error-handling.dox @@ -52,6 +52,9 @@ This error indicates an underlying problem that requires the application exit an @par <code>WT_RUN_RECOVERY</code> This error is generated when wiredtiger_open is configured to return an error if recovery is required to use the database. +@par <code>WT_CACHE_FULL</code> +This error is only generated when wiredtiger_open is configured to run in-memory, and an insert or update operation requires more than the configured cache size to complete. + @if IGNORE_BUILT_BY_API_ERR_END @endif diff --git a/src/docs/programming.dox b/src/docs/programming.dox index f717f4ed1fe..7ec68ca9b46 100644 --- a/src/docs/programming.dox +++ b/src/docs/programming.dox @@ -41,6 +41,7 @@ each of which is ordered by one or more columns. - @subpage compact - @subpage checkpoint - @subpage durability +- @subpage in_memory - @subpage cursor_join - @subpage cursor_log - @ref transaction_named_snapshots |