diff --git a/src/modules/htable/doc/htable_admin.xml b/src/modules/htable/doc/htable_admin.xml index 360abbd896d..196f9707faf 100644 --- a/src/modules/htable/doc/htable_admin.xml +++ b/src/modules/htable/doc/htable_admin.xml @@ -1475,6 +1475,36 @@ kamcmd htable.seti test x 123 # Set first entry in array key x $sht(test=>x[0]) as integer kamcmd htable.seti test x[0] 123 ... + + + +
+ + <function moreinfo="none">htable.setex htable key expire</function> + + + Set the expire for an item in hash table. + + + Name: htable.setex + + Parameters: + + htable : name of the hash table + + key : key name in the hash table + + expire : integer value for the expire (seconds) + + + + Example: + + +... +# set expire for $sht(test=>x) to 120 secs +kamctl rpc htable.seti test x 120 +...