Mvc\Model\Manager::createQuery

public createQuery (mixed $phql) Creates a Phalcon\Mvc\Model\Query without execute it

Logger::EMERGENCE

integer EMERGENCE

Config::offsetUnset

public offsetUnset (mixed $index) Unsets an attribute using the array-syntax unset($config['database']);

Mvc\Model\MetaData\Redis::MODELS_NOT_NULL

integer MODELS_NOT_NULL

Improving Performance with Cache

Phalcon provides the Phalcon\Cache class allowing faster access to frequently used or already processed data. Phalcon\Cache is written in C, achieving higher performance and reducing the overhead when getting items from the backends. This class uses an internal structure of frontend and backend components. Front-end components act as input sources or interfaces, while backend components offer storage options to the class. When to implement cache? Although this component is very fast, implementi

Mvc\Model\MetaData\Xcache::MODELS_AUTOMATIC_DEFAULT_UPDATE

integer MODELS_AUTOMATIC_DEFAULT_UPDATE

Mvc\Model::minimum

public static mixed minimum ([array $parameters]) Allows to get the minimum value of a column that match the specified conditions //What is the minimum robot id? $id = Robots::minimum(array('column' => 'id')); echo "The minimum robot id is: ", $id; //What is the minimum id of mechanical robots? $sum = Robots::minimum(array("type='mechanical'", 'column' => 'id')); echo "The minimum robot id of mechanical robots is ", $id;

Mvc\View\Engine\Volt\Compiler::expression

final public expression (array $expr) Resolves an expression node in an AST volt tree

Filter::FILTER_FLOAT_CAST

string FILTER_FLOAT_CAST

Mvc\Model\TransactionInterface::getMessages

abstract public getMessages () ...