Changeset 645

Show
Ignore:
Timestamp:
09/17/07 07:26:57 (1 year ago)
Author:
bo..@topfunky.com
Message:

Fixed misspelled mem_cache option for MemCache? sessions
Fixed misspelled note in yaml comments about mem_cache option

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/app_generators/merb_plugin/templates/config/merb.yml

    r525 r645  
    1515 
    1616# Uncomment if you have more than one ORM or if you need to be specific about 
    17 # which memory store to use. Built-in options are: memory, cookie, or memcache 
     17# which memory store to use. Built-in options are: memory, cookie, or mem_cache 
    1818#:session_store: sequel 
    1919 
  • trunk/lib/merb/server.rb

    r644 r645  
    220220          __DIR__ / "merb" / "session" / "memory_session", 
    221221          "Using in-memory sessions; sessions will be lost whenever the server stops.") 
    222         register_session_type('memcache', 
     222        register_session_type('mem_cache', 
    223223          __DIR__ / "merb" / "session" / "mem_cache_session", 
    224224          "Using MemCache distributed memory sessions")