Giter Club home page Giter Club logo

ray.raydiforlaravel's People

Contributors

koriym avatar n1215 avatar naokitsuchiya avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

ray.raydiforlaravel's Issues

Please improve response time.

I have installed a Laravel telescope to track request times, and in my case, a simple controller returns a view and using a logger logs it to the storage directory.

When I send a request to the home page without Aop the response time is around 538ms, But when I send a request to a home with enabled Aop the request time is 1215ms.

Loggable Attribute:

<?php

declare(strict_types=1);

namespace App\Attribute;

use Attribute;
use Ray\Di\Di\Qualifier;

#[Attribute, Qualifier]
final class Loggable
{
}

LoggerInterceptor:

<?php

declare(strict_types=1);

namespace App\Interceptor;
use Ray\Aop\MethodInterceptor;
use Ray\Aop\MethodInvocation;
use function microtime;

final class LoggerInterceptor implements MethodInterceptor
{
    public function invoke(MethodInvocation $invocation)
    {
        \Illuminate\Support\Facades\Log::info('Welcome view proccessed.');
    }
}

Controller:

<?php

namespace App\Http\Controllers;

use App\Attribute\Loggable;
use App\Domain\Double\DoubleInterface;
use Ray\Di\Di\Inject;
use Ray\Di\Di\PostConstruct;
use Ray\Di\Di\Set;
use Ray\Di\ProviderInterface;

class HelloController extends Controller
{
    #[Loggable]
    public function index()
    {
        return view('welcome');
    }
}

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.