gpt4 book ai didi

php - 如何在大型单体网络应用程序中构建缓存存储/缓存清除?

转载 作者:搜寻专家 更新时间:2023-10-31 21:01:20 26 4
gpt4 key购买 nike

由于多种原因,我们正在开发一个基于老化代码库的应用程序。它被客户积极使用,并不断发展。

我们最近遇到了性能问题,我们选择通过添加缓存来解决。列表、菜单、大图,它们都存储为某种缓存(文件系统上的单独文件)

对于每个缓存,您基本上有两个进程:

  • 缓存创建过程(或更新)
  • 缓存删除/刷新过程

由于应用程序是单一的,导致缓存保存或清除的可能操作并不明显且不言自明。有许多入口点可以触发这样的过程(构建新菜单?清除菜单缓存 - 等等)。

所以我们有时会遇到这样的问题,例如应用程序的一小部分没有清除缓存。或者另一个没有在应该刷新缓存的时候刷新缓存。

基本上,我们缺乏对所有缓存清除/保存触发器的概述。

两个问题:

  • 我怎样才能准确地模拟这样的概览?
  • 我应该如何从技术上组织清除或保存缓存的触发器?

最佳答案

缓存是一种通用的横切关注点,可以使用 Aspect-oriented programming 来解决。 .简而言之,这种技术允许在不修改代码本身的情况下向现有代码添加或修改行为。您只需要发现一些 join points并附上 advice给他们。

Go! AOP 为 PHP 提供了最强大的 AOP 实现:

例如,一些应该被缓存的函数:

class AnyClass
{
/**
* @Cacheable
*/
public function someVerySlowMethod() { /* ... */ }
}

和相关的建议实现:

class CachingAspect implements Aspect
{
private $cache = null;

public function __construct(Memcache $cache)
{
$this->cache = $cache;
}

/**
* This advice intercepts the execution of cacheable methods
*
* The logic is pretty simple: we look for the value in the cache and if we have a cache miss
* we then invoke original method and store its result in the cache.
*
* @param MethodInvocation $invocation Invocation
*
* @Around("@annotation(Annotation\Cacheable)")
*/
public function aroundCacheable(MethodInvocation $invocation)
{
$obj = $invocation->getThis();
$class = is_object($obj) ? get_class($obj) : $obj;
$key = $class . ':' . $invocation->getMethod()->name;

$result = $this->cache->get($key);
if ($result === false) {
$result = $invocation->proceed();
$this->cache->set($key, $result);
}

return $result;
}
}

就是这样。原始帖子的描述("Caching Like a PRO"):

This aspect then will be registered in the AOP kernel. AOP engine will analyze each loaded class during autoloading and if a method matches the @Around("@annotation(Annotation\Cacheable)") pointcut then AOP will change it on the fly to include a custom logic of invoking an advice. Class name will be preserved, so AOP can easily cache static methods and even methods in final classes.

请注意,注释 (@Cacheable) 是可选的:您可以 various ways找到切入点。

关于php - 如何在大型单体网络应用程序中构建缓存存储/缓存清除?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41607864/

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