Qucs-S S-parameter Viewer & RF Synthesis Tools
Loading...
Searching...
No Matches
Classes | Variables
jinja2.bccache Namespace Reference

Classes

class  _MemcachedClient
 
class  Bucket
 
class  BytecodeCache
 
class  FileSystemBytecodeCache
 
class  MemcachedBytecodeCache
 

Variables

int bc_version = 5
 
tuple bc_magic
 

Detailed Description

The optional bytecode cache system. This is useful if you have very
complex template situations and the compilation of all those templates
slows down your application too much.

Situations where this is useful are often forking web applications that
are initialized on the first request.

Variable Documentation

◆ bc_magic

tuple jinja2.bccache.bc_magic
Initial value:
1= (
2 b"j2"
3 + pickle.dumps(bc_version, 2)
4 + pickle.dumps((sys.version_info[0] << 24) | sys.version_info[1], 2)
5)