save list(a,b,c)


Saves list(s) a under key b with a lifetime of c minutes. Return value true in case of success.

The lists are stored permanently and can also be read out by other profiles.

You can restore the lists with function restore list(a,b).

Note: The concept is not intended for mass data.

Parameter Description


Parameter

Description

a

Names of the lists (comma-separated).

b

The key under which the lists are stored.

c

Lifetime in minutes. No value or 0 means forever.

Example


Create 2 lists with add to list(a,b,c).

Save those lists permanently with save list(a,b,c).

Delete all lists with clear all lists().

Restore the lists with restore list(a,b) (you could also do this in another profile).

The restored lists are now available again in this profile.