apoc.static.set
This is the APOC Extended documentation. APOC Extended is not supported by Neo4j. For the officially supported APOC Core, go to the APOC Core page. |
Procedure Apoc Extended
apoc.static.set(name, value) - stores value under key for server lifetime storage, returns previously stored or configured value
Usage Examples
The following stores an in memory value that lasts for the lifetime of the server:
CALL apoc.static.set("twitter.user", "Michael");
value |
---|
null |
We can retrieve static values using apoc.static.get and apoc.static.getAll.