Hola,
Intenta poner un $this->db->flush_cache() al comenzar la funcion del modelo, algo asi:
Código PHP:
Ver originalpublic function get_delivery_price() {
$this->db->flush_cache();
$this->db->select('delivery_price')->from('delivery_price_table');
$query = $this->db->get();
return $query->row()->delivery_price;
}
Entre tantas consultas tal vez se filtro un where.
Mas info:
Active Record Caching
Saludos