diff options
author | pi <pi@FreeBSD.org> | 2015-12-02 04:33:10 +0800 |
---|---|---|
committer | pi <pi@FreeBSD.org> | 2015-12-02 04:33:10 +0800 |
commit | 6de21e7ea3cb9f98916acfa34db4aac29fa8225a (patch) | |
tree | 054df3f836f335c5670ba4069b0ebb3017ad0424 /databases/cego | |
parent | 3e1da5f4937ce20de219c6731e1a005b03726b40 (diff) | |
download | freebsd-ports-gnome-6de21e7ea3cb9f98916acfa34db4aac29fa8225a.tar.gz freebsd-ports-gnome-6de21e7ea3cb9f98916acfa34db4aac29fa8225a.tar.zst freebsd-ports-gnome-6de21e7ea3cb9f98916acfa34db4aac29fa8225a.zip |
devel/lfcbase: 1.6.5 -> 1.6.7
databases/cego: 2.26.14 -> 2.26.16
lfcbase:
- Improvement for ListT template class. The end of the list is now
stored int _listEnd variable. This improves Insert performance,
since the end of the list can immediately accesed instead of tracking
through the whole list until the end is reached.
- Patch in ThreadLock, the mutex for lock statistics has been
removed, since there is no need for synchronization. Also errors
have not been checked for the pthread_rwlock_wrlock, which might
cause some deadlocks.
cego:
- Ugly bug fixed in CegoObjectManager::releaseDataPtrUnlocked.
The logical operator && must be replaced by ||, otherwise fix leak arises
- Fix in CegoSelect::nextTuple for query cache to avoid, that queries
including system tables are cached.
- Error message fixes in CegoXPorter
- Introduced bufferpool distribution rate information in show pool output.
This indicates, if the buffer pool is used in a balanced way.
The behaviour can be changed with the BUFFERPOOLHASHKEY parameter.
The list pool command now receives the pool information in several
chunk messages. This allows to print also very large buffer pool
configurations
- Introduced BUFFERPOOLHASHKEY as a database tuning parameter. Based
on this parameter, the corresponding bufferpool slot for a fileId,
pageId tuple is calculated. Depending on the configured datafile
size, it might be useful to adjust this parameter
- Cego Tera Test started. Approach is to load about 1TB of random
data through the whole stack ( via cgblow ). Actually we are running
with 19 parallel processes loading concurrently 4 different tables.
Estimated date to achieve TB-Size is in about one month.
- Changed command line argument --nolockstat to --lockstat. So the
default value is lockstat disabled, since this has impact to the
database performance
- Modification of hash function in CegoBufferPool to achieve a
better distribution for large buffer pool configurations
Submitted by: Bjoern Lemke <lemke@lemke-it.com>
Diffstat (limited to 'databases/cego')
-rw-r--r-- | databases/cego/Makefile | 2 | ||||
-rw-r--r-- | databases/cego/distinfo | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/databases/cego/Makefile b/databases/cego/Makefile index 19123b48362c..f127bea7ce22 100644 --- a/databases/cego/Makefile +++ b/databases/cego/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= cego -PORTVERSION= 2.26.14 +PORTVERSION= 2.26.16 CATEGORIES= databases MASTER_SITES= http://www.lemke-it.com/ diff --git a/databases/cego/distinfo b/databases/cego/distinfo index e5f89101f0ac..120aaa0978d5 100644 --- a/databases/cego/distinfo +++ b/databases/cego/distinfo @@ -1,2 +1,2 @@ -SHA256 (cego-2.26.14.tar.gz) = 86ebe6818b1392cf0f8e2e84eff927a96e2335eaf1ecaa2ff972b38b28826514 -SIZE (cego-2.26.14.tar.gz) = 1365895 +SHA256 (cego-2.26.16.tar.gz) = f139eacb7316d3d67f17de46abc59bf616e799db2f149f8fab49914bb717e01e +SIZE (cego-2.26.16.tar.gz) = 1366521 |