예제 #1
0
def _ibeis_cache_write(key, val):
    """ Writes to global IBEIS cache

    TODO: Use text based config file
    """
    print('[sysres] set %s=%r' % (key, val))
    util_cache.global_cache_write(key, val, appname=__APPNAME__)
예제 #2
0
파일: sysres.py 프로젝트: Erotemic/ibeis
def _ibeis_cache_write(key, val):
    """ Writes to global IBEIS cache

    TODO: Use text based config file
    """
    print('[sysres] set %s=%r' % (key, val))
    util_cache.global_cache_write(key, val, appname=__APPNAME__)
예제 #3
0
def _guitool_cache_write(key, val):
    """ Writes to global IBEIS cache """
    util_cache.global_cache_write(
        key, val, appname='wbia'
    )  # HACK, user should specify appname
예제 #4
0
def _guitool_cache_write(key, val):
    """ Writes to global IBEIS cache """
    util_cache.global_cache_write(key, val, appname='ibeis')  # HACK, user should specify appname
예제 #5
0
파일: sysres.py 프로젝트: heroinlin/ibeis
def _ibeis_cache_write(key, val):
    """ Writes to global IBEIS cache """
    print('[sysres] set %s=%r' % (key, val))
    util_cache.global_cache_write(key, val, appname=__APPNAME__)
예제 #6
0
파일: sysres.py 프로젝트: byteyoo/ibeis
def _ibeis_cache_write(key, val):
    """ Writes to global IBEIS cache """
    util_cache.global_cache_write(key, val, appname=__APPNAME__)