Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
e3df19d9
Commit
e3df19d9
authored
Aug 26, 2013
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Redis AR WIP
- introduced RecordSchema class for schema definition
parent
82dc3b12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
129 additions
and
61 deletions
+129
-61
ActiveRecord.php
framework/yii/db/ActiveRecord.php
+1
-1
ActiveQuery.php
framework/yii/db/redis/ActiveQuery.php
+2
-2
ActiveRecord.php
framework/yii/db/redis/ActiveRecord.php
+24
-29
Connection.php
framework/yii/db/redis/Connection.php
+2
-1
RecordSchema.php
framework/yii/db/redis/RecordSchema.php
+54
-0
Customer.php
tests/unit/data/ar/redis/Customer.php
+3
-2
Item.php
tests/unit/data/ar/redis/Item.php
+7
-7
Order.php
tests/unit/data/ar/redis/Order.php
+3
-7
OrderItem.php
tests/unit/data/ar/redis/OrderItem.php
+3
-7
ActiveRecordTest.php
tests/unit/framework/db/redis/ActiveRecordTest.php
+23
-2
RedisConnectionTest.php
tests/unit/framework/db/redis/RedisConnectionTest.php
+1
-1
RedisTestCase.php
tests/unit/framework/db/redis/RedisTestCase.php
+6
-2
No files found.
framework/yii/db/ActiveRecord.php
View file @
e3df19d9
...
@@ -268,7 +268,7 @@ class ActiveRecord extends Model
...
@@ -268,7 +268,7 @@ class ActiveRecord extends Model
*/
*/
public
static
function
tableName
()
public
static
function
tableName
()
{
{
return
'tbl_'
.
Inflector
::
camel2id
(
StringHelper
::
basename
(
get_called_class
()),
'_'
)
;
return
static
::
getTableSchema
()
->
name
;
}
}
/**
/**
...
...
framework/yii/db/redis/ActiveQuery.php
View file @
e3df19d9
...
@@ -112,7 +112,7 @@ class ActiveQuery extends \yii\base\Component
...
@@ -112,7 +112,7 @@ class ActiveQuery extends \yii\base\Component
}
}
$rows
=
array
();
$rows
=
array
();
foreach
(
$primaryKeys
as
$pk
)
{
foreach
(
$primaryKeys
as
$pk
)
{
$key
=
$modelClass
::
tableName
()
.
':a:'
.
(
is_array
(
$pk
)
?
implode
(
'-'
,
$pk
)
:
$pk
);
// TODO escape PK glue
$key
=
$modelClass
::
tableName
()
.
':a:'
.
$modelClass
::
hashPk
(
$pk
);
// get attributes
// get attributes
$data
=
$db
->
executeCommand
(
'HGETALL'
,
array
(
$key
));
$data
=
$db
->
executeCommand
(
'HGETALL'
,
array
(
$key
));
$row
=
array
();
$row
=
array
();
...
@@ -148,7 +148,7 @@ class ActiveQuery extends \yii\base\Component
...
@@ -148,7 +148,7 @@ class ActiveQuery extends \yii\base\Component
$primaryKeys
=
$db
->
executeCommand
(
'LRANGE'
,
array
(
$modelClass
::
tableName
(),
$start
,
$start
+
1
));
$primaryKeys
=
$db
->
executeCommand
(
'LRANGE'
,
array
(
$modelClass
::
tableName
(),
$start
,
$start
+
1
));
}
}
$pk
=
reset
(
$primaryKeys
);
$pk
=
reset
(
$primaryKeys
);
$key
=
$modelClass
::
tableName
()
.
':a:'
.
(
is_array
(
$pk
)
?
implode
(
'-'
,
$pk
)
:
$pk
);
// TODO escape PK glue
$key
=
$modelClass
::
tableName
()
.
':a:'
.
$modelClass
::
hashPk
(
$pk
);
// get attributes
// get attributes
$data
=
$db
->
executeCommand
(
'HGETALL'
,
array
(
$key
));
$data
=
$db
->
executeCommand
(
'HGETALL'
,
array
(
$key
));
if
(
$data
===
array
())
{
if
(
$data
===
array
())
{
...
...
framework/yii/db/redis/ActiveRecord.php
View file @
e3df19d9
...
@@ -20,7 +20,7 @@ use yii\db\TableSchema;
...
@@ -20,7 +20,7 @@ use yii\db\TableSchema;
/**
/**
* ActiveRecord is the base class for classes representing relational data in terms of objects.
* ActiveRecord is the base class for classes representing relational data in terms of objects.
*
*
*
@include @yii/db/ActiveRecord.md
*
*
*
* @author Carsten Brandt <mail@cebe.cc>
* @author Carsten Brandt <mail@cebe.cc>
* @since 2.0
* @since 2.0
...
@@ -68,31 +68,19 @@ abstract class ActiveRecord extends \yii\db\ActiveRecord
...
@@ -68,31 +68,19 @@ abstract class ActiveRecord extends \yii\db\ActiveRecord
return
$query
;
return
$query
;
}
}
public
static
function
hashPk
(
$pk
)
{
return
(
is_array
(
$pk
)
?
implode
(
'-'
,
$pk
)
:
$pk
);
// TODO escape PK glue
}
/**
/**
* Creates an [[ActiveQuery]] instance with a given SQL statement.
* @inheritdoc
*
* Note that because the SQL statement is already specified, calling additional
* query modification methods (such as `where()`, `order()`) on the created [[ActiveQuery]]
* instance will have no effect. However, calling `with()`, `asArray()` or `indexBy()` is
* still fine.
*
* Below is an example:
*
* ~~~
* $customers = Customer::findBySql('SELECT * FROM tbl_customer')->all();
* ~~~
*
* @param string $sql the SQL statement to be executed
* @param array $params parameters to be bound to the SQL statement during execution.
* @return ActiveQuery the newly created [[ActiveQuery]] instance
*/
*/
public
static
function
findBySql
(
$sql
,
$params
=
array
())
public
static
function
findBySql
(
$sql
,
$params
=
array
())
{
{
throw
new
NotSupportedException
(
'findBySql() is not supported by redis ActiveRecord'
);
throw
new
NotSupportedException
(
'findBySql() is not supported by redis ActiveRecord'
);
}
}
/**
/**
* Creates an [[ActiveQuery]] instance.
* Creates an [[ActiveQuery]] instance.
* This method is called by [[find()]], [[findBySql()]] and [[count()]] to start a SELECT query.
* This method is called by [[find()]], [[findBySql()]] and [[count()]] to start a SELECT query.
...
@@ -107,6 +95,14 @@ abstract class ActiveRecord extends \yii\db\ActiveRecord
...
@@ -107,6 +95,14 @@ abstract class ActiveRecord extends \yii\db\ActiveRecord
));
));
}
}
/**
* Declares the name of the database table associated with this AR class.
* @return string the table name
*/
public
static
function
tableName
()
{
return
static
::
getTableSchema
()
->
name
;
}
/**
/**
* Returns the schema information of the DB table associated with this AR class.
* Returns the schema information of the DB table associated with this AR class.
...
@@ -114,6 +110,7 @@ abstract class ActiveRecord extends \yii\db\ActiveRecord
...
@@ -114,6 +110,7 @@ abstract class ActiveRecord extends \yii\db\ActiveRecord
*/
*/
public
static
function
getTableSchema
()
public
static
function
getTableSchema
()
{
{
// TODO should be cached
throw
new
InvalidConfigException
(
__CLASS__
.
'::getTableSchema() needs to be overridden in subclasses and return a TableSchema.'
);
throw
new
InvalidConfigException
(
__CLASS__
.
'::getTableSchema() needs to be overridden in subclasses and return a TableSchema.'
);
}
}
...
@@ -173,9 +170,9 @@ abstract class ActiveRecord extends \yii\db\ActiveRecord
...
@@ -173,9 +170,9 @@ abstract class ActiveRecord extends \yii\db\ActiveRecord
}
}
// }
// }
// save pk in a findall pool
// save pk in a findall pool
$db
->
executeCommand
(
'RPUSH'
,
array
(
static
::
tableName
(),
implode
(
'-'
,
$pk
)));
// TODO escape PK glue
$db
->
executeCommand
(
'RPUSH'
,
array
(
static
::
tableName
(),
static
::
hashPk
(
$pk
)));
$key
=
static
::
tableName
()
.
':a:'
.
implode
(
'-'
,
$pk
);
// TODO escape PK glue
$key
=
static
::
tableName
()
.
':a:'
.
static
::
hashPk
(
$pk
);
// save attributes
// save attributes
$args
=
array
(
$key
);
$args
=
array
(
$key
);
foreach
(
$values
as
$attribute
=>
$value
)
{
foreach
(
$values
as
$attribute
=>
$value
)
{
...
@@ -216,7 +213,7 @@ abstract class ActiveRecord extends \yii\db\ActiveRecord
...
@@ -216,7 +213,7 @@ abstract class ActiveRecord extends \yii\db\ActiveRecord
}
}
$n
=
0
;
$n
=
0
;
foreach
(
$condition
as
$pk
)
{
foreach
(
$condition
as
$pk
)
{
$key
=
static
::
tableName
()
.
':a:'
.
(
is_array
(
$pk
)
?
implode
(
'-'
,
$pk
)
:
$pk
);
// TODO escape PK glue
$key
=
static
::
tableName
()
.
':a:'
.
static
::
hashPk
(
$pk
);
// save attributes
// save attributes
$args
=
array
(
$key
);
$args
=
array
(
$key
);
foreach
(
$attributes
as
$attribute
=>
$value
)
{
foreach
(
$attributes
as
$attribute
=>
$value
)
{
...
@@ -257,7 +254,7 @@ abstract class ActiveRecord extends \yii\db\ActiveRecord
...
@@ -257,7 +254,7 @@ abstract class ActiveRecord extends \yii\db\ActiveRecord
}
}
$n
=
0
;
$n
=
0
;
foreach
(
$condition
as
$pk
)
{
// TODO allow multiple pks as condition
foreach
(
$condition
as
$pk
)
{
// TODO allow multiple pks as condition
$key
=
static
::
tableName
()
.
':a:'
.
(
is_array
(
$pk
)
?
implode
(
'-'
,
$pk
)
:
$pk
);
// TODO escape PK glue
$key
=
static
::
tableName
()
.
':a:'
.
static
::
hashPk
(
$pk
);
foreach
(
$counters
as
$attribute
=>
$value
)
{
foreach
(
$counters
as
$attribute
=>
$value
)
{
$db
->
executeCommand
(
'HINCRBY'
,
array
(
$key
,
$attribute
,
$value
));
$db
->
executeCommand
(
'HINCRBY'
,
array
(
$key
,
$attribute
,
$value
));
}
}
...
@@ -292,13 +289,11 @@ abstract class ActiveRecord extends \yii\db\ActiveRecord
...
@@ -292,13 +289,11 @@ abstract class ActiveRecord extends \yii\db\ActiveRecord
}
}
$attributeKeys
=
array
();
$attributeKeys
=
array
();
foreach
(
$condition
as
$pk
)
{
foreach
(
$condition
as
$pk
)
{
if
(
is_array
(
$pk
))
{
$pk
=
static
::
hashPk
(
$pk
);
$pk
=
implode
(
'-'
,
$pk
);
$db
->
executeCommand
(
'LREM'
,
array
(
static
::
tableName
(),
0
,
$pk
));
}
$attributeKeys
[]
=
static
::
tableName
()
.
':a:'
.
$pk
;
$db
->
executeCommand
(
'LREM'
,
array
(
static
::
tableName
(),
0
,
$pk
));
// TODO escape PK glue
$attributeKeys
[]
=
static
::
tableName
()
.
':a:'
.
$pk
;
// TODO escape PK glue
}
}
return
$db
->
executeCommand
(
'DEL'
,
$attributeKeys
);
return
$db
->
executeCommand
(
'DEL'
,
$attributeKeys
);
// TODO make this atomic or document as NOT
}
}
/**
/**
...
...
framework/yii/db/redis/Connection.php
View file @
e3df19d9
...
@@ -12,6 +12,7 @@ namespace yii\db\redis;
...
@@ -12,6 +12,7 @@ namespace yii\db\redis;
use
\yii\base\Component
;
use
\yii\base\Component
;
use
yii\base\InvalidConfigException
;
use
yii\base\InvalidConfigException
;
use
\yii\db\Exception
;
use
\yii\db\Exception
;
use
yii\helpers\Inflector
;
use
yii\helpers\StringHelper
;
use
yii\helpers\StringHelper
;
/**
/**
...
@@ -337,7 +338,7 @@ class Connection extends Component
...
@@ -337,7 +338,7 @@ class Connection extends Component
*/
*/
public
function
__call
(
$name
,
$params
)
public
function
__call
(
$name
,
$params
)
{
{
$redisCommand
=
strtoupper
(
StringHelpe
r
::
camel2words
(
$name
,
false
));
$redisCommand
=
strtoupper
(
Inflecto
r
::
camel2words
(
$name
,
false
));
if
(
in_array
(
$redisCommand
,
$this
->
redisCommands
))
{
if
(
in_array
(
$redisCommand
,
$this
->
redisCommands
))
{
return
$this
->
executeCommand
(
$name
,
$params
);
return
$this
->
executeCommand
(
$name
,
$params
);
}
else
{
}
else
{
...
...
framework/yii/db/redis/RecordSchema.php
0 → 100644
View file @
e3df19d9
<?php
/**
*
*
* @author Carsten Brandt <mail@cebe.cc>
*/
namespace
yii\db\redis
;
use
yii\base\InvalidConfigException
;
use
yii\db\TableSchema
;
/**
* Class RecordSchema defines the data schema for a redis active record
*
* As there is no schema in a redis DB this class is used to define one.
*
* @package yii\db\redis
*/
class
RecordSchema
extends
TableSchema
{
/**
* @var string[] column names.
*/
public
$columns
=
array
();
/**
* @return string the column type
*/
public
function
getColumn
(
$name
)
{
parent
::
getColumn
(
$name
);
}
public
function
init
()
{
if
(
empty
(
$this
->
name
))
{
throw
new
InvalidConfigException
(
'name of RecordSchema must not be empty.'
);
}
if
(
empty
(
$this
->
primaryKey
))
{
throw
new
InvalidConfigException
(
'primaryKey of RecordSchema must not be empty.'
);
}
if
(
!
is_array
(
$this
->
primaryKey
))
{
$this
->
primaryKey
=
array
(
$this
->
primaryKey
);
}
foreach
(
$this
->
primaryKey
as
$pk
)
{
if
(
!
isset
(
$this
->
columns
[
$pk
]))
{
throw
new
InvalidConfigException
(
'primaryKey '
.
$pk
.
' is not a colum of RecordSchema.'
);
}
}
}
}
\ No newline at end of file
tests/unit/data/ar/redis/Customer.php
View file @
e3df19d9
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
namespace
yiiunit\data\ar\redis
;
namespace
yiiunit\data\ar\redis
;
use
yii\db\
Table
Schema
;
use
yii\db\
redis\Record
Schema
;
class
Customer
extends
ActiveRecord
class
Customer
extends
ActiveRecord
{
{
...
@@ -21,7 +21,8 @@ class Customer extends ActiveRecord
...
@@ -21,7 +21,8 @@ class Customer extends ActiveRecord
public
static
function
getTableSchema
()
public
static
function
getTableSchema
()
{
{
return
new
TableSchema
(
array
(
return
new
RecordSchema
(
array
(
'name'
=>
'customer'
,
'primaryKey'
=>
array
(
'id'
),
'primaryKey'
=>
array
(
'id'
),
'columns'
=>
array
(
'columns'
=>
array
(
'id'
=>
'integer'
,
'id'
=>
'integer'
,
...
...
tests/unit/data/ar/redis/Item.php
View file @
e3df19d9
...
@@ -2,19 +2,19 @@
...
@@ -2,19 +2,19 @@
namespace
yiiunit\data\ar\redis
;
namespace
yiiunit\data\ar\redis
;
use
yii\db\
Table
Schema
;
use
yii\db\
redis\Record
Schema
;
class
Item
extends
ActiveRecord
class
Item
extends
ActiveRecord
{
{
public
static
function
tableName
()
{
return
'tbl_item'
;
}
public
static
function
getTableSchema
()
public
static
function
getTableSchema
()
{
{
return
new
TableSchema
(
array
(
return
new
RecordSchema
(
array
(
'name'
=>
'item'
,
'primaryKey'
=>
array
(
'id'
),
'primaryKey'
=>
array
(
'id'
),
'sequenceName'
=>
'id'
,
'foreignKeys'
=>
array
(
// TODO for defining relations
),
'columns'
=>
array
(
'columns'
=>
array
(
'id'
=>
'integer'
,
'id'
=>
'integer'
,
'name'
=>
'string'
,
'name'
=>
'string'
,
...
...
tests/unit/data/ar/redis/Order.php
View file @
e3df19d9
...
@@ -2,15 +2,10 @@
...
@@ -2,15 +2,10 @@
namespace
yiiunit\data\ar\redis
;
namespace
yiiunit\data\ar\redis
;
use
yii\db\
Table
Schema
;
use
yii\db\
redis\Record
Schema
;
class
Order
extends
ActiveRecord
class
Order
extends
ActiveRecord
{
{
public
static
function
tableName
()
{
return
'tbl_order'
;
}
public
function
getCustomer
()
public
function
getCustomer
()
{
{
return
$this
->
hasOne
(
'Customer'
,
array
(
'id'
=>
'customer_id'
));
return
$this
->
hasOne
(
'Customer'
,
array
(
'id'
=>
'customer_id'
));
...
@@ -49,7 +44,8 @@ class Order extends ActiveRecord
...
@@ -49,7 +44,8 @@ class Order extends ActiveRecord
public
static
function
getTableSchema
()
public
static
function
getTableSchema
()
{
{
return
new
TableSchema
(
array
(
return
new
RecordSchema
(
array
(
'name'
=>
'orders'
,
'primaryKey'
=>
array
(
'id'
),
'primaryKey'
=>
array
(
'id'
),
'columns'
=>
array
(
'columns'
=>
array
(
'id'
=>
'integer'
,
'id'
=>
'integer'
,
...
...
tests/unit/data/ar/redis/OrderItem.php
View file @
e3df19d9
...
@@ -2,15 +2,10 @@
...
@@ -2,15 +2,10 @@
namespace
yiiunit\data\ar\redis
;
namespace
yiiunit\data\ar\redis
;
use
yii\db\
Table
Schema
;
use
yii\db\
redis\Record
Schema
;
class
OrderItem
extends
ActiveRecord
class
OrderItem
extends
ActiveRecord
{
{
public
static
function
tableName
()
{
return
'tbl_order_item'
;
}
public
function
getOrder
()
public
function
getOrder
()
{
{
return
$this
->
hasOne
(
'Order'
,
array
(
'id'
=>
'order_id'
));
return
$this
->
hasOne
(
'Order'
,
array
(
'id'
=>
'order_id'
));
...
@@ -23,7 +18,8 @@ class OrderItem extends ActiveRecord
...
@@ -23,7 +18,8 @@ class OrderItem extends ActiveRecord
public
static
function
getTableSchema
()
public
static
function
getTableSchema
()
{
{
return
new
TableSchema
(
array
(
return
new
RecordSchema
(
array
(
'name'
=>
'order_item'
,
'primaryKey'
=>
array
(
'order_id'
,
'item_id'
),
'primaryKey'
=>
array
(
'order_id'
,
'item_id'
),
'columns'
=>
array
(
'columns'
=>
array
(
'order_id'
=>
'integer'
,
'order_id'
=>
'integer'
,
...
...
tests/unit/framework/db/redis/ActiveRecordTest.php
View file @
e3df19d9
...
@@ -9,10 +9,31 @@ use yiiunit\data\ar\redis\OrderItem;
...
@@ -9,10 +9,31 @@ use yiiunit\data\ar\redis\OrderItem;
use
yiiunit\data\ar\redis\Order
;
use
yiiunit\data\ar\redis\Order
;
use
yiiunit\data\ar\redis\Item
;
use
yiiunit\data\ar\redis\Item
;
/*
Users:
1 - user1
2 - user2
3 - user3
Items: 1-5
Order: 1-3
OrderItem:
1 - order: 1
2 - order: 1
3 - order: 2
4 - order: 2
5 - order: 2
6 - order: 3
*/
class
ActiveRecordTest
extends
RedisTestCase
class
ActiveRecordTest
extends
RedisTestCase
{
{
public
function
setUp
()
public
function
setUp
()
{
{
parent
::
setUp
();
ActiveRecord
::
$db
=
$this
->
getConnection
();
ActiveRecord
::
$db
=
$this
->
getConnection
();
$customer
=
new
Customer
();
$customer
=
new
Customer
();
...
@@ -72,8 +93,6 @@ class ActiveRecordTest extends RedisTestCase
...
@@ -72,8 +93,6 @@ class ActiveRecordTest extends RedisTestCase
$orderItem
=
new
OrderItem
();
$orderItem
=
new
OrderItem
();
$orderItem
->
setAttributes
(
array
(
'order_id'
=>
3
,
'item_id'
=>
2
,
'quantity'
=>
1
,
'subtotal'
=>
40.0
),
false
);
$orderItem
->
setAttributes
(
array
(
'order_id'
=>
3
,
'item_id'
=>
2
,
'quantity'
=>
1
,
'subtotal'
=>
40.0
),
false
);
$orderItem
->
save
(
false
);
$orderItem
->
save
(
false
);
parent
::
setUp
();
}
}
public
function
testFind
()
public
function
testFind
()
...
@@ -332,6 +351,8 @@ class ActiveRecordTest extends RedisTestCase
...
@@ -332,6 +351,8 @@ class ActiveRecordTest extends RedisTestCase
$this
->
assertFalse
(
$customer
->
isNewRecord
);
$this
->
assertFalse
(
$customer
->
isNewRecord
);
}
}
// TODO test serial column incr
public
function
testUpdate
()
public
function
testUpdate
()
{
{
// save
// save
...
...
tests/unit/framework/db/redis/ConnectionTest.php
→
tests/unit/framework/db/redis/
Redis
ConnectionTest.php
View file @
e3df19d9
...
@@ -4,7 +4,7 @@ namespace yiiunit\framework\db\redis;
...
@@ -4,7 +4,7 @@ namespace yiiunit\framework\db\redis;
use
yii\db\redis\Connection
;
use
yii\db\redis\Connection
;
class
ConnectionTest
extends
RedisTestCase
class
Redis
ConnectionTest
extends
RedisTestCase
{
{
/**
/**
* Empty DSN should throw exception
* Empty DSN should throw exception
...
...
tests/unit/framework/db/redis/RedisTestCase.php
View file @
e3df19d9
...
@@ -12,7 +12,10 @@ class RedisTestCase extends TestCase
...
@@ -12,7 +12,10 @@ class RedisTestCase extends TestCase
{
{
protected
function
setUp
()
protected
function
setUp
()
{
{
$params
=
$this
->
getParam
(
'redis'
);
$this
->
mockApplication
();
$databases
=
$this
->
getParam
(
'databases'
);
$params
=
isset
(
$databases
[
'redis'
])
?
$databases
[
'redis'
]
:
null
;
if
(
$params
===
null
||
!
isset
(
$params
[
'dsn'
]))
{
if
(
$params
===
null
||
!
isset
(
$params
[
'dsn'
]))
{
$this
->
markTestSkipped
(
'No redis server connection configured.'
);
$this
->
markTestSkipped
(
'No redis server connection configured.'
);
}
}
...
@@ -34,7 +37,8 @@ class RedisTestCase extends TestCase
...
@@ -34,7 +37,8 @@ class RedisTestCase extends TestCase
*/
*/
public
function
getConnection
(
$reset
=
true
)
public
function
getConnection
(
$reset
=
true
)
{
{
$params
=
$this
->
getParam
(
'redis'
);
$databases
=
$this
->
getParam
(
'databases'
);
$params
=
isset
(
$databases
[
'redis'
])
?
$databases
[
'redis'
]
:
array
();
$db
=
new
\yii\db\redis\Connection
;
$db
=
new
\yii\db\redis\Connection
;
$db
->
dsn
=
$params
[
'dsn'
];
$db
->
dsn
=
$params
[
'dsn'
];
$db
->
password
=
$params
[
'password'
];
$db
->
password
=
$params
[
'password'
];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment