Giter VIP home page Giter VIP logo

Comments (14)

easydowork avatar easydowork commented on August 27, 2024 1

@easydowork could you provide the benchmark without cache vs few cache types? cheers

I have never used a benchmark before, I will try it.

from yii2.

Webkadabra avatar Webkadabra commented on August 27, 2024 1

how is anyone taking such issues seriously? Please, stop with nonsense issues

from yii2.

bizley avatar bizley commented on August 27, 2024

Is there a significant performance boost with a cache in here?

from yii2.

easydowork avatar easydowork commented on August 27, 2024

Is there a significant performance boost with a cache in here?

$t1 = microtime(true);
        $className = Yii::$app->cache->getOrSet([Yii::$app->id,Yii::getAlias('@app'),'createControllerByID',$id],function () use($id){
            $pos = strrpos($id, '/');
            if ($pos === false) {
                $prefix = '';
                $className = $id;
            } else {
                $prefix = substr($id, 0, $pos + 1);
                $className = substr($id, $pos + 1);
            }

            if ($this->isIncorrectClassNameOrPrefix($className, $prefix)) {
                return null;
            }

            $className = preg_replace_callback('%-([a-z0-9_])%i', function ($matches) {
                    return ucfirst($matches[1]);
                }, ucfirst($className)) . 'Controller';
            $className = ltrim($this->controllerNamespace . '\\' . str_replace('/', '\\', $prefix) . $className, '\\');
            if (strpos($className, '-') !== false || !class_exists($className)) {
                return null;
            }
            return $className;
        });
        $t2 = microtime(true);
        print_r(bcsub($t2,$t1,4));echo PHP_EOL;exit;

The performance difference between using cache and not using cache is about 15 times, as regular expressions are not used anymore

from yii2.

bizley avatar bizley commented on August 27, 2024

Let's go for it. Could you prepare PR?

from yii2.

rob006 avatar rob006 commented on August 27, 2024

The performance difference between using cache and not using cache is about 15 times,

Do you have an actual benchmark? What is so slow in this method that would justify using cache? I tested preg_replace_callback() only and it is at least twice as fast as reading cache using FileCache.

from yii2.

easydowork avatar easydowork commented on August 27, 2024

The performance difference between using cache and not using cache is about 15 times,

Do you have an actual benchmark? What is so slow in this method that would justify using cache? I tested preg_replace_callback() only and it is at least twice as fast as reading cache using FileCache.

I was just a simple test, calculating the running time, and indeed there is such a significant difference. Using cache does not require additional checks and judgments

from yii2.

rob006 avatar rob006 commented on August 27, 2024

Using cache does not require additional checks and judgments

Cache has its own overhead, it is not always worth to cache some calculation, sometimes retrieving cached value is slower than calculating it. And it has some other disadvantages: cache takes resources (memory or disk space) and it can be outdated.

from yii2.

bizley avatar bizley commented on August 27, 2024

I can see that time test is taking cache handling into the consideration, that is why I asked for an implementation proposal. We should double check the actual gain since there are some doubts.

from yii2.

bizley avatar bizley commented on August 27, 2024

@easydowork could you provide the benchmark without cache vs few cache types? cheers

from yii2.

mtangoo avatar mtangoo commented on August 27, 2024

@easydowork, thanks for taking time to make PR.
Can you provide the benchmark with and without #20115 so that we can make comparison?
That would easily help decide if we should consider merge or not, based on merits

from yii2.

mtangoo avatar mtangoo commented on August 27, 2024

@Webkadabra who exactly and which comment are you responding to?

from yii2.

easydowork avatar easydowork commented on August 27, 2024

I will do a simple test, using the microtime (true) function to calculate the difference, and replacing preg_replace_callback with cache in the createControllerByID function does indeed improve the calculation time, but it increases the complexity and instability risk of the system. So I gave up.

from yii2.

mtangoo avatar mtangoo commented on August 27, 2024

with cache in the createControllerByID function does indeed improve the calculation time, but it increases the complexity and instability risk of the system. So I gave up.

I'm going to close it then. Since it seems to add complexity that isn't worthy it. Correct me If I understood you wrong!

from yii2.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.