Caching in Azure Functions using python -


i using azure queue trigger in azure function.

my azure function connects mongodb , fetches collections.

some of collections common queue jobs , can vary 1000 documents 1 million documents.i need cache collections.

i don't want use external caching services(azure redis server etc).

is there way use disk caching(or other kind of caching)?

i using python 3.5.2.

i have used diskcache cache mongodb results.

diskcache apache2 licensed disk , file backed cache library, written in pure-python, , compatible django.


Comments

Popular posts from this blog

angular - DownloadURL return null in below code -

python 2.7 - Given three nested dictionaries, sort the top two nested dictionaries from a value in the innermost dictionary? -