Daily laravel-20160623| Nullstore

Source: Internet
Author: User

<?phpnamespace Illuminate\Cache;use Illuminate\Contracts\Cache\Store;// a name  space to declareclass nullstore extends taggablestore implements store{     use RetrievesMultipleKeys;// use a traits ,this is  a retrieves multiplekeys    /**     * the  array of stored values.     *     *  @var  array     */    protected  $storage  = [];//  a store array to keep values.    /**      * Retrieve an item from the cache by key.      *     *  @param   string   $key       *  @return &NBsp;mixed     */    public function get ($key)      {        //    }//   Struct method    /**     * store an item  in the cache for a given number of minutes.      *     *  @param   string   $key       *  @param   mixed    $value      *  @param   int      $minutes      *  @return  void      */    public function put ($key,  $value,  $minutes)     {        //    }/ /struct method     /**     * increment the value of an item  in the cache.     *     *  @param    string   $key      *  @param   mixed   $ value     *  @return  int     */     public function increment ($key,  $value  = 1)     {         //    }//struct method     /**     * increment the value of an item in  the cache.     *     *  @param    string   $key      *  @param   mixed    $value      *&nbSP; @return  int     */    public function decrement ($key,  $value  = 1)     {        //     }//struct method    /**     *  store an item in the cache indefinitely.     *      *  @param   string   $key      * @ param  mixed    $value      *  @return  void      */    public function forever ($key,  $value)      {        //    }//struct  method    /**     * remove an item from  The cache.     *     *  @param   string   $key       *  @return  void     */    public  Function forget ($key)     {        //     }//struct method    /**     * remove  all items from the cache.     *      *  @return  void     */    public function  flush ()     {        //     }//struct method    /**     * Get the  cache key prefix.     *     *  @return   string      */    public function getprefix ()     {         return  ';     }//struct method}


This article is from the "Focus on PHP" blog, please be sure to keep this source http://lijinghsan.blog.51cto.com/3357095/1759057

Daily laravel-20160623| Nullstore

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.