mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 17:15:28 +00:00
define size of the shared memory blocks
This commit is contained in:
parent
0183d4dbb4
commit
fe877b8b2e
1 changed files with 16 additions and 8 deletions
|
|
@ -18,34 +18,42 @@ abstract class Connection implements \Yggverse\Yoda\Interface\Model\Connection
|
||||||
|
|
||||||
// Set defaults
|
// Set defaults
|
||||||
$this->_pool->init(
|
$this->_pool->init(
|
||||||
'completed'
|
'completed',
|
||||||
|
1
|
||||||
);
|
);
|
||||||
|
|
||||||
$this->_pool->init(
|
$this->_pool->init(
|
||||||
'title'
|
'title',
|
||||||
|
255
|
||||||
);
|
);
|
||||||
|
|
||||||
$this->_pool->init(
|
$this->_pool->init(
|
||||||
'subtitle'
|
'subtitle',
|
||||||
|
255
|
||||||
);
|
);
|
||||||
|
|
||||||
$this->_pool->init(
|
$this->_pool->init(
|
||||||
'tooltip'
|
'tooltip',
|
||||||
|
255
|
||||||
);
|
);
|
||||||
|
|
||||||
$this->_pool->init(
|
$this->_pool->init(
|
||||||
'mime'
|
'mime',
|
||||||
|
255
|
||||||
);
|
);
|
||||||
$this->_pool->init(
|
$this->_pool->init(
|
||||||
'data'
|
'data',
|
||||||
|
// 1 Mb default
|
||||||
);
|
);
|
||||||
|
|
||||||
$this->_pool->init(
|
$this->_pool->init(
|
||||||
'redirect'
|
'redirect',
|
||||||
|
1024
|
||||||
);
|
);
|
||||||
|
|
||||||
$this->_pool->init(
|
$this->_pool->init(
|
||||||
'request'
|
'request',
|
||||||
|
// 1 Mb default
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue