Class Index [+]

Quicksearch

Merb::MemcacheStore

Public Instance Methods

delete_session(session_id) click to toggle source

Parameters

session_id

ID of the session to delete.

:api: private

    # File lib/merb-core/dispatch/session/memcached.rb, line 58
58:     def delete_session(session_id)
59:       delete("session:#{session_id}")
60:     end
retrieve_session(session_id) click to toggle source

Parameters

session_id

ID of the session to retrieve.

Returns

ContainerSession

The session corresponding to the ID.

:api: private

    # File lib/merb-core/dispatch/session/memcached.rb, line 41
41:     def retrieve_session(session_id)
42:       get("session:#{session_id}")
43:     end
store_session(session_id, data) click to toggle source

Parameters

session_id

ID of the session to set.

data

The session to set.

:api: private

    # File lib/merb-core/dispatch/session/memcached.rb, line 50
50:     def store_session(session_id, data)
51:       set("session:#{session_id}", data)
52:     end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.