When loading vdb_metadata.pickle inside vardbapi._aux_cache_init(), in
authorZac Medico <zmedico@gentoo.org>
Fri, 20 Feb 2009 23:37:13 +0000 (23:37 -0000)
committerZac Medico <zmedico@gentoo.org>
Fri, 20 Feb 2009 23:37:13 +0000 (23:37 -0000)
order to avoid an extreme performance issue, disable buffering when opening
the file under python-3.0. Unfortunately, performance is still poor relative
to python-2.x, but buffering makes it much worse.

svn path=/main/trunk/; revision=12665

pym/portage/dbapi/vartree.py

index 4877e68a93d138be950596fe3e2c9d902e5976d2..cfabad844b448c4130a4090f3e353661c3e5d1b6 100644 (file)
@@ -35,6 +35,7 @@ from portage.cache.mappings import slot_dict_class
 import os, re, shutil, stat, errno, copy, subprocess
 import logging
 import shlex
+import sys
 from itertools import izip
 
 try:
@@ -1044,8 +1045,15 @@ class vardbapi(dbapi):
 
        def _aux_cache_init(self):
                aux_cache = None
+               open_kwargs = {}
+               if sys.hexversion >= 0x3000000:
+                       # Buffered io triggers extreme performance issues in
+                       # Unpickler.load() (problem observed with python-3.0.1).
+                       # Unfortunately, performance is still poor relative to
+                       # python-2.x, but buffering makes it much worse.
+                       open_kwargs["buffering"] = 0
                try:
-                       f = open(self._aux_cache_filename, 'rb')
+                       f = open(self._aux_cache_filename, mode='rb', **open_kwargs)
                        mypickle = pickle.Unpickler(f)
                        aux_cache = mypickle.load()
                        f.close()