MySQL 8.3.0
Source Code Documentation
sp_cache.h File Reference
#include <sys/types.h>
#include "my_inttypes.h"

Go to the source code of this file.

Functions

void sp_cache_clear (sp_cache **cp)
 
void sp_cache_insert (sp_cache **cp, sp_head *sp)
 
sp_headsp_cache_lookup (sp_cache **cp, const sp_name *name)
 
void sp_cache_invalidate ()
 
void sp_cache_flush_obsolete (sp_cache **cp, sp_head **sp)
 Remove an out-of-date SP from the cache. More...
 
int64 sp_cache_version ()
 Return the current global version of the cache. More...
 
void sp_cache_enforce_limit (sp_cache *cp, ulong upper_limit_for_elements)
 Enforce that the current number of elements in the cache don't exceed the argument value by flushing the cache if necessary. More...
 

Function Documentation

◆ sp_cache_clear()

void sp_cache_clear ( sp_cache **  cp)

◆ sp_cache_enforce_limit()

void sp_cache_enforce_limit ( sp_cache c,
ulong  upper_limit_for_elements 
)

Enforce that the current number of elements in the cache don't exceed the argument value by flushing the cache if necessary.

Parameters
[in]cCache to check
[in]upper_limit_for_elementsSoft upper limit for number of sp_head objects that can be stored in the cache.

◆ sp_cache_flush_obsolete()

void sp_cache_flush_obsolete ( sp_cache **  cp,
sp_head **  sp 
)

Remove an out-of-date SP from the cache.

Parameters
[in]cpCache to flush
[in]spSP to remove.
Note
This invalidates pointers to sp_head objects this thread uses. In practice that means 'dont call this function when inside SP'.

◆ sp_cache_insert()

void sp_cache_insert ( sp_cache **  cp,
sp_head sp 
)

◆ sp_cache_invalidate()

void sp_cache_invalidate ( )

◆ sp_cache_lookup()

sp_head * sp_cache_lookup ( sp_cache **  cp,
const sp_name name 
)

◆ sp_cache_version()

int64 sp_cache_version ( )

Return the current global version of the cache.