本文整理汇总了PHP中SS_Cache::Factory方法的典型用法代码示例。如果您正苦于以下问题:PHP SS_Cache::Factory方法的具体用法?PHP SS_Cache::Factory怎么用?PHP SS_Cache::Factory使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SS_Cache
的用法示例。
在下文中一共展示了SS_Cache::Factory方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: weighted_search
/**
* kind of a wierd thing to add in here
* @param [type] $class [description]
* @param [type] $q [description]
* @param array $fields [description]
* @return [type] [description]
*/
public static function weighted_search($className, $q, array $fields = array('Content' => 1, 'Title' => 3), $start = 0, $limit = 10, $filterSql = null)
{
// sort out the cache
$implodedArgs = $className . '_' . $q . '_' . implode('_', $fields) . '_' . $start . '_' . $limit . '_' . $filterSql;
$cachekey = preg_replace("/[^A-Za-z0-9]/", '_', __FUNCTION__ . "_" . $implodedArgs);
$cache = SS_Cache::Factory('DataObjectSearch', 'Output', array('lifetime' => static::get_cache_time(), 'automatic_serialization' => true));
$set = $cache->load($cachekey);
// dont hit the db if we don't need to
if (!$set) {
// parse terms
// need to analyse various fragments like first 3 words, last 3 words
$terms = array_merge(static::str_to_terms($q), static::str_to_fragments($q));
$terms[] = $q;
$terms = array_unique($terms);
// Set some vars
$set = new ArrayList();
$db = AbcDB::getInstance();
$sql = '';
// expand search to subclasses
$classes = array_merge(ClassInfo::subclassesFor($className), array($className));
// iterate through list
foreach ($classes as $className) {
// Fetch Class Data
$table = DataObjectHelper::getTableForClass($className);
foreach ($fields as $field => $weight) {
foreach ($terms as $term) {
// init the recivers
$tables = $joins = $filter = array();
// $tables we are working with
if ($table) {
$tables[$table] = $table;
}
// Where
if ($table) {
$where[$table][] = $table . ".ClassName = '" . $className . "'";
}
// find the table the property is on
$extTable = DataObjectHelper::getExtensionTableForClassWithProperty($className, $field);
// join
if ($table && $extTable && $table != $extTable) {
$joins[$table][] = $extTable;
} elseif ($extTable) {
$tables[$extTable] = $extTable;
}
// ext table
if ($extTable) {
$filter[$table][] = $extTable . "." . $field . " LIKE '%" . Convert::raw2sql($term) . "%'";
} else {
$filter[$table][] = $table . "." . $field . " LIKE '%" . Convert::raw2sql($term) . "%'";
}
// Build Query
foreach ($tables as $table) {
// Prepare Where Statement
$uWhere = array_unique($where[$table]);
$uFilter = array_unique($filter[$table]);
// Where SQL
$wSql = "(" . implode(' OR ', $uWhere) . ") AND (" . implode(' OR ', $uFilter) . ")";
// Make the rest of the SQL
if ($sql) {
$sql .= " ) UNION ALL (" . "\n\n";
}
$sql .= "SELECT " . $table . ".ClassName, " . $table . ".ID, " . $weight . " AS weight" . "\n";
$sql .= "FROM " . $table . "\n";
// join
if (array_key_exists($table, $joins)) {
$join = array_unique($joins[$table]);
foreach ($join as $j) {
$sql .= " LEFT JOIN " . $j . " ON " . $table . ".ID = " . $j . ".ID" . "\n";
}
}
// Add the WHERE statement
$sql .= "WHERE " . $wSql . "\n\n";
}
// Add Global Filter to Query
if ($filterSql) {
$sql .= (count($tables) == 1 ? "AND " : "WHERE ") . $filterSql;
}
}
}
}
// Add Limits and order to Query
$sql = "\n SELECT SQL_CALC_FOUND_ROWS ClassName, ID, SUM(weight) AS total_weight\n FROM ((" . $sql . ")) AS t1\n GROUP BY ID\n ORDER BY total_weight DESC\n LIMIT " . $start . "," . $limit . "\n ";
// Get Data
// die('<br>' . $sql . '<br>');
$result = $db->query($sql);
$result = $result ? $result->fetchAll(PDO::FETCH_OBJ) : array();
// Convert to DOs
foreach ($result as $entry) {
// Make the data easier to work with
$entry = (object) $entry;
$className = $entry->ClassName;
// this is slower, but will be more reliable
$dO = DataObject::get_by_id($className, $entry->ID);
//.........这里部分代码省略.........