From a3f37bab2cbaf80db811d480d5b2b95850def3b9 Mon Sep 17 00:00:00 2001 From: Nikodemus Siivola Date: Fri, 8 Jun 2007 11:42:45 +0000 Subject: [PATCH] 1.0.6.35: slightly bigger +cache-vector-max-length+ --- src/pcl/cache.lisp | 6 ++++-- version.lisp-expr | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/pcl/cache.lisp b/src/pcl/cache.lisp index bb148ff..5ce3ac1 100644 --- a/src/pcl/cache.lisp +++ b/src/pcl/cache.lisp @@ -119,8 +119,10 @@ (values (- total-lines free-lines) total-lines (cache-depth cache) (cache-limit cache)))) -;;; Don't allocate insanely huge caches. -(defconstant +cache-vector-max-length+ (expt 2 14)) +;;; Don't allocate insanely huge caches: this is 4096 lines for a +;;; value cache with 8-15 keys -- probably "big enough for anyone", +;;; and 16384 lines for a commonplace 2-key value cache. +(defconstant +cache-vector-max-length+ (expt 2 16)) ;;; Compute the maximum allowed probe depth as a function of cache size. ;;; Cache size refers to number of cache lines, not the length of the diff --git a/version.lisp-expr b/version.lisp-expr index aaccc48..1c260b8 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"1.0.6.34" +"1.0.6.35" -- 1.7.10.4