24.44 PURGE_WEB_SOURCE_CACHE Procedure (Deprecated)
Note:
This procedure is deprecated and will be removed in a future release. Usepurge_rest_source_cache
instead.
This procedure purges the local cache for a Web Source module. The web source module must exist in the current application and identified by its static ID. If caching is disabled or no cache entries exist, nothing happens.
Syntax
PROCEDURE PURGE_WEB_SOURCE_CACHE(
p_module_static_id IN VARCHAR2,
p_current_session_only IN BOOLEAN DEFAULT FALSE );
Parameters
Table 24-39 PURGE_WEB_SOURCE_CACHE Procedure Parameters
Parameter | Description |
---|---|
|
Static ID of the web source module to invoke. |
|
Specify |
Example
Purge cache for the Web Source Module with static ID "USGS".
begin
apex_exec.purge_web_source_cache(
p_module_static_id => 'USGS' );
end;
Parent topic: APEX_EXEC