Code Monkey home page Code Monkey logo

Comments (4)

YahnisElsts avatar YahnisElsts commented on August 16, 2024 1

Are you talking about the existing cache which stores parsed plugin metadata, or about some theoretical new cache that would store cached responses?

request.log may become quite large even with humble number of clients. Is it possible to rotate logs like Linux OS does. In example, how about zipping current request.log weekly or monthly with year-week/month number and clearing current request log.

Log rotation is already implemented, but not enabled by default. You can enable it like this:

$updateServer->enableLogRotation(
    self::FILE_PER_MONTH, //One file per month.
    3                     //Keep the last 3 files.
);

from wp-update-server.

YahnisElsts avatar YahnisElsts commented on August 16, 2024 1

There should be a new cache entry every time the plugin ZIP file is modified. This is usually, but not always, the same as "number of plugins" x "number of versions". Changing something in a ZIP file will produce a new cache file even if you don't change the version number.

It would be nice to automatically clean up old cache files, but that's currently not implemented. If necessary, it should be safe for you to delete all cache files (except .htaccess). The update server will automatically regenerate the cache for the current version when a new request comes in. I don't know how many files are too many; I haven't run into any issues with that in practice.

The purpose of the cache is to save time on having to parse plugin ZIP files, so I think that storing the cached data as ZIP files would somewhat defeat the point.

from wp-update-server.

ddur avatar ddur commented on August 16, 2024

Are you talking about the existing cache which stores parsed plugin metadata, or about some theoretical new cache that would store cached responses?

I'm talking about existing metadata in /cache sub-directory. I have 25 of them for single plugin.

Thanks.

from wp-update-server.

ddur avatar ddur commented on August 16, 2024

My guess was that using/sending cache.zip instead base-64.txt would improve server performance. I never meant parsing plugin again, only replacing cache storage format. Parsing & Caching (either as *txt or *.zip) is one time event, that will save server time on many get_metadata events.

Cached files are small, so that is no size issue, I just like not to waste storage by keeping useless data. 😎

🆗 👍 Thank You.

from wp-update-server.

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.