More information about sessions?

Same as the topic… how about setting and getting values from sessions?

Your probably looking for http://www.yiiframew…acheHttpSession

there's no support through controller or request? do i have to load that object each time ?

Set session value:

Yii::app()->session[$name]=$value;

Get session value:

$value=Yii::app()->session[$name];

Note, 'session' is an app component.