summaryrefslogtreecommitdiff
path: root/trove/common/cache.py
blob: 7c259e44015eae2f0ea65e75e102c30a158fbe50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Copyright 2021 Catalyst Cloud
#
#    Licensed under the Apache License, Version 2.0 (the "License");
#    you may not use this file except in compliance with the License.
#    You may obtain a copy of the License at
#
#        http://www.apache.org/licenses/LICENSE-2.0
#
#    Unless required by applicable law or agreed to in writing, software
#    distributed under the License is distributed on an "AS IS" BASIS,
#    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#    See the License for the specific language governing permissions and
#    limitations under the License.

"""The code related to integration between oslo.cache module and trove."""

from oslo_cache import core
from oslo_config import cfg


def register_cache_configurations(conf):
    """Register all configurations required for oslo.cache.

    The procedure registers all configurations required for oslo.cache.
    It should be called before configuring of cache region
    """
    core.configure(conf)

    ports_cache_group = cfg.OptGroup('instance_ports_cache')
    ports_cache_opts = [
        cfg.IntOpt('expiration_time', default=86400,
                   help='TTL, in seconds, for any cached item in the '
                        'dogpile.cache region used for caching of the '
                        'instance ports.'),
        cfg.BoolOpt("caching", default=True,
                    help='Toggle to enable/disable caching when getting trove '
                         'instance ports. Please note that the global toggle '
                         'for oslo.cache(enabled=True in [cache] group) '
                         'must be enabled to use this feature.')
    ]
    conf.register_group(ports_cache_group)
    conf.register_opts(ports_cache_opts, group=ports_cache_group)

    return conf


# variable that stores an initialized cache region for trove
_REGION = None


def get_cache_region():
    global _REGION
    if not _REGION:
        _REGION = core.configure_cache_region(
            conf=register_cache_configurations(cfg.CONF),
            region=core.create_region())
    return _REGION