Welcome Guest, Not a member yet? Register   Sign In
Caching Models with Memcached?
#8

[eluser]freakylp[/eluser]
[quote author="Jonathon Hill" date="1229855712"][quote author="dmorin" date="1229380927"]However, when serializing the object, it includes lots of other CI stuff because of the way CI extends "$this" to include references to all of the other loaded assets.[/quote]

If you're using PHP5 (you should be) you could create a __sleep() magic method and unset() the CI stuff.[/quote]

I think that extending $this->db will be much easier.

Code:
class My_model extends Model{

  
publuc function __construct(){
       parent::__contstruct();
}


public function db_query($query){
   .....
   if( $this->memcached->get(.....) != false){
       return $this->memcached->get(....);
   }
   return $this->db->query($query)->result();
}

}


Messages In This Thread
Caching Models with Memcached? - by El Forum - 12-15-2008, 10:42 AM
Caching Models with Memcached? - by El Forum - 12-15-2008, 11:33 AM
Caching Models with Memcached? - by El Forum - 12-15-2008, 11:40 AM
Caching Models with Memcached? - by El Forum - 12-15-2008, 03:09 PM
Caching Models with Memcached? - by El Forum - 12-15-2008, 03:18 PM
Caching Models with Memcached? - by El Forum - 12-20-2008, 10:35 PM
Caching Models with Memcached? - by El Forum - 12-21-2008, 04:15 PM
Caching Models with Memcached? - by El Forum - 01-13-2009, 09:18 PM
Caching Models with Memcached? - by El Forum - 01-13-2009, 09:24 PM
Caching Models with Memcached? - by El Forum - 01-13-2009, 09:59 PM
Caching Models with Memcached? - by El Forum - 01-14-2009, 08:38 AM
Caching Models with Memcached? - by El Forum - 01-14-2009, 08:54 AM
Caching Models with Memcached? - by El Forum - 01-14-2009, 09:13 AM
Caching Models with Memcached? - by El Forum - 01-14-2009, 09:45 PM
Caching Models with Memcached? - by El Forum - 01-15-2009, 08:51 AM
Caching Models with Memcached? - by El Forum - 01-16-2009, 05:53 AM
Caching Models with Memcached? - by El Forum - 01-16-2009, 08:44 AM
Caching Models with Memcached? - by El Forum - 01-24-2009, 10:51 PM



Theme © iAndrew 2016 - Forum software by © MyBB