Giter Club home page Giter Club logo

do-file-cache's People

Contributors

divineomega avatar jbrooksuk avatar kirsty-gasston avatar peter279k avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

do-file-cache's Issues

Exception on Windows

Hi,
I am on Windows and therefore the sys_getloadavg() function does not exist and even though I haven't touched the default configuration "'unixLoadUpperThreshold' => -1," as the suggestion in the exception message reads, the exception is nevertheless thrown. I think this check

if (!function_exists('sys_getloadavg')) {

should be done instead before this line

$unixLoad = sys_getloadavg();
.

Best regards,
Dimitar

Error suppression

In the line, error suppression (@) is used:
https://github.com/DivineOmega/DO-File-Cache/blob/master/src/DOFileCache.php#L136

Unfortunately, upon heave use of this code, your error log will get cluttered with error messages. Surely the @ prevents errors to be written to standard output (/web browser), but errors are still written to custom error handlers and log files.

Hence, I propose to not use error suppression, and solve the real problem at hand here. Data is only serialized whenever it is not a string:
https://github.com/DivineOmega/DO-File-Cache/blob/master/src/DOFileCache.php#L52 , so to clarify: ints, bools and floats are serialized as well. My suggestion is to always serialize, strings too, and also always unserialize. This way the get procedure will not result in loads of notices in the log any more.

The only downside is that strings will have to be serialized, increasing some storage space and computation time. This does not outweight the benefit of having well-defined storage characteristics, imho.

Btw, I'm posting this as a user of the divineomega/password_exposed library, which is an example of this issue in practice.

Using clearstatcache before checking file states/manipulations

According to clearstatcache function reference, the file state cache is effected on following related file functions:

Affected functions include stat(), lstat(), file_exists(), is_writable(), is_readable(), is_executable(), is_file(), is_dir(), is_link(), filectime(), fileatime(), filemtime(), fileinode(), filegroup(), fileowner(), filesize(), filetype(), and fileperms().

To avoid file stat caching, it should use this function before manipulating any file operation :).

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.