Development

Changeset 10730

You must first sign up to be able to contribute.

Changeset 10730

Show
Ignore:
Timestamp:
08/07/08 08:55:37 (4 months ago)
Author:
fabien
Message:

[doc] [1.1, 1.2] fixed typos (closes #4144)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • doc/branches/1.1/book/12-Caching.txt

    r9590 r10730  
    420420 
    421421    [php] 
    422     $cacheManager->remove('user/show?id=*');                     // Remove for all user records for the current host 
    423     $cacheManager->remove('user/show?id=*', 'life.askeet.com');  // Remove for all user records for the host life.askeet.com 
    424     $cacheManager->remove('user/show?id=*', '*');                // Remove for all user records for every host
     422    $cacheManager->remove('user/show?id=*');                     // Remove records for the current host and all users 
     423    $cacheManager->remove('user/show?id=*', 'life.askeet.com');  // Remove records for the host life.askeet.com and all users 
     424    $cacheManager->remove('user/show?id=*', '*');                // Remove records for every host and all user
    425425 
    426426The `remove()` method works in all the caching strategies that you can define in the `factories.yml` (not only `sfFileCache`, but also `sfAPCCache`, `sfEAcceleratorCache`, `sfMemcacheCache`, `sfSQLiteCache`, and `sfXCacheCache`). 
  • doc/branches/1.2/book/12-Caching.txt

    r9590 r10730  
    420420 
    421421    [php] 
    422     $cacheManager->remove('user/show?id=*');                     // Remove for all user records for the current host 
    423     $cacheManager->remove('user/show?id=*', 'life.askeet.com');  // Remove for all user records for the host life.askeet.com 
    424     $cacheManager->remove('user/show?id=*', '*');                // Remove for all user records for every host
     422    $cacheManager->remove('user/show?id=*');                     // Remove records for the current host and all users 
     423    $cacheManager->remove('user/show?id=*', 'life.askeet.com');  // Remove records for the host life.askeet.com and all users 
     424    $cacheManager->remove('user/show?id=*', '*');                // Remove records for every host and all user
    425425 
    426426The `remove()` method works in all the caching strategies that you can define in the `factories.yml` (not only `sfFileCache`, but also `sfAPCCache`, `sfEAcceleratorCache`, `sfMemcacheCache`, `sfSQLiteCache`, and `sfXCacheCache`).