gpt4 book ai didi

php - 我们如何配置 symfony 1.4 以与 Varnish 一起使用?

转载 作者:可可西里 更新时间:2023-10-31 22:47:04 28 4
gpt4 key购买 nike

昨天我的服务器上有一个巨大的负载,而且,即使我之前致力于优化性能(大约 2 个月前我遇到了类似的问题),我的服务器也无法处理负载(我有一个服务每分钟大约有 50 个帐户创建)。

最后,我的服务器处理了负载,因为我更改了实例:我在 Amazon EC2 上,并且我使用了一个带有 20 个微实例的负载均衡器。这还不够。最后改成10个大实例,就OK了。但是,您知道,大型实例有点贵,我负担不起这么多大型实例(现在,因为负载较少,我“只有”5 个大型实例在运行,但也太多了)。

因此,我仍在进行优化和服务器配置,但我卡在了一个点上。

到目前为止,我正在使用带有 memcached 的 symfony。它工作正常,所有应该缓存的都缓存了,等等。

现在,我想在我的 apache 网络服务器前添加一个 Varnish。

我这样做了,我配置了它 - 我想 - 好吧,它现在正在运行。问题是没有命中缓存。

据我所见,问题是 symfony 发送的 HTTP header 设置不正确。例如,对于缓存请求,我有以下 header :

    Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache

该模块已正确配置为使用缓存等,但我就是找不到可以设置正确 HTTP header 的位置。我知道如何在 symfony 中为特定操作设置缓存 header ,但很明显,我不想对每个操作都这样做(顺便说一句,即使我这样做了,我认为这不是正确的方法) .

所以我想问一下如何将 Varnish 与 symfony 1.4 一起使用据我所知,有两种可能性:

  • 我正确设置了由 symfony 发送的 HTTP header
  • 我配置 Varnish 以正确处理由 symfony 发送的默认 HTTP header

您知道我该如何解决其中一个问题吗?

谢谢,

注意: 我在 Varnish3 上

最佳答案

我终于自己找到了解决问题的方法,所以我将分享我是如何做到的:

首先,您应该知道 symfony 会在每次调用页面时自动创建一个 PHP session 。所以,我所做的是停用该默认行为。为此,我在 factories.yml 中添加了一个存储工厂(默认的:sfSessionStorage),并将 auto_start 参数设置为 false:

storage:
class: sfSessionStorage
param:
auto_start: false

然后,我创建了一个过滤器来处理 http header :

我先把它添加到filters.yml文件中

http_header:
class: myHttpHeaderFilter

然后我在 lib 文件夹中添加了一个 myHttpHeaderFilter.php 类,我在其中处理了我想要的所有 header 。例如:

class myHttpHeaderFilter extends sfFilter
{
public function execute($filterChain)
{
//execute the next filter in the chain
$filterChain->execute();
//code after here runs after action

// Filters don't have direct access to the request and user objects.
// You will need to use the context object to get them
$request = $this->getContext()->getRequest();
$path = $request->getPathInfo();

if (substr($path, 0, 5) == "/foo") // We cache only some of the /foo requests
{
if (strstr($path, "bar")) // We cache the request containing bar during half an hour hour
$this->getContext()->getResponse()->addCacheControlHttpHeader('max-age=1800');
else // All the other requests are cached during 24 hours
{
$this->getContext()->getResponse()->addCacheControlHttpHeader('max-age=86400');
}
}
else // The other requests are not cached
$this->getContext()->getResponse()->addCacheControlHttpHeader('no-cache, no-store');
}
}

就是这样!

我还修改了服务器端的vcl_recv,保证所有不需要缓存的请求都不会缓存(理论上不是必须要缓存的,因为我是在symfony上处理的,它只是一个“仔细检查”)。

sub vcl_recv {
if (req.http.Authorization || req.http.Cookie) {
/* Not cacheable by default */
return (pass);
}

if (req.request != "GET" && req.request != "HEAD") {
/* We only deal with GET and HEAD by default */
return (pass);
}

if (req.url ~ "/user") /* Requests containing user data are never cached */
{
return (pass);
}

return (lookup);
}

关于php - 我们如何配置 symfony 1.4 以与 Varnish 一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8232010/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com