MIT Kerberos supports multiple types of credential cache to store tickets .
For example, if I want to use a persistent keyring per-user in kernel memory I can add the following to krb5.conf
.
[libdefaults]
default_ccache_name = KEYRING:persistent:%{uid}
One of the options is a ccache in process memory.
How do I enable this option?