3

我目前有 laravel 照亮数据库和雄辩的 laravel 之外的工作。

我现在正试图让缓存也能正常工作。

这就是我现在所拥有的。

<?php

require dirname(dirname(__DIR__)) . '/vendor/autoload.php';
require dirname(__DIR__) . '/config.php';

use Illuminate\Database\Capsule\Manager as DB;
use Illuminate\Cache\CacheManager as CacheManager;

$dbc = new DB;

$dbc->addConnection(array(
    'driver'    => 'mysql',
    'host'      => DB_HOST,
    'database'  => DB_NAME,
    'username'  => DB_USER,
    'password'  => DB_PASSWORD,
    'charset'   => 'utf8',
    'collation' => 'utf8_unicode_ci',
    'prefix'    => '',
));

# Set the default fetch mode for all queries
$dbc->setFetchMode(PDO::FETCH_CLASS);

# Set up the cache
$container = $dbc->getContainer();

$container['config']['cache.driver'] = 'memcached';
$container['config']['cache.memcached'] = array('host' => '127.0.0.1', 'port' => 11211, 'weight' => 100);

$container->offsetGet('config')->offsetSet('cache.driver', 'array');

$cacheManager = new CacheManager($container);

$dbc->setCacheManager($cacheManager);

$dbc->setAsGlobal();
$dbc->bootEloquent();

global $dbc;

尽管安装了 memcached 和 php 模块 memcached 并且可以正常工作,但这对我不起作用。

更新我没有得到这个配置的错误。我只是没有看到任何东西进入 memcached。我已经使用以下代码行进行了测试。

$dbc->table('users')->limit(10)->cacheTags(array('people', 'authors'))->remember(10)->get();

一边看盒子一边

[root@localhost vagrant]# telnet 127.0.0.1 11211
Trying 127.0.0.1...
Connected to 127.0.0.1.
Escape character is '^]'.
stats items
END
4

2 回答 2

2

好吧,我遇到了同样的问题,有一个名为:Using Laravel's Illuminate Components Independently 的 github 存储库。这完美解决了我的问题,这里是链接: https ://github.com/mattstauffer/Torch

于 2017-03-17T06:57:57.320 回答
1

这可能有助于有人在 Laravel 5.8 中使用缓存外观,在我的情况下,我正在为 Codeigniter 项目使用文件缓存。

use \Illuminate\Cache\CacheManager;
use \Illuminate\Filesystem\Filesystem;

$container = $capsule->getContainer();
$container['config']['cache.stores.file'] = array(
    'driver' => 'file',
    'path' => \APPPATH . 'cache/eloquent' // use your own cache directory
);
$container['config']['cache.default'] = 'file';
$container['files'] = new Filesystem();
$cacheManager = new CacheManager( $container ); 
$app->instance( 'cache', $cacheManager);
于 2019-09-20T18:16:52.550 回答