Code Monkey home page Code Monkey logo

Comments (6)

WinPooh32 avatar WinPooh32 commented on August 11, 2024

No, cache controlling is not implemented yet.
But you can try my similar project (only json output, http api is described here), which can handle cache.

from peerstohttp.

chaos369 avatar chaos369 commented on August 11, 2024

Thanks for your reply sir, are there any documents about WinPooh32/content? Have you done performance testing for either of them? Wish you can adding the cache cleaning to peerstohttp.

from peerstohttp.

WinPooh32 avatar WinPooh32 commented on August 11, 2024

openapi.yaml is api specification :)
You can render docs using it. Copy&paste it's content to https://editor.swagger.io/
Or generate client's code using https://openapi-generator.tech/

Settings api is not implemented yet.

Performance is same as for peerstohttp. Also same commands for compiling, but only from /cmd/service directory.

Yep, I am going to add cache to peerstohttp.

from peerstohttp.

chaos369 avatar chaos369 commented on August 11, 2024

Thank you for your great work sir, I'm trying more.

from peerstohttp.

WinPooh32 avatar WinPooh32 commented on August 11, 2024

I have been added -cache-capacity option, by default it's limited to 10 GiB.
Can be set to -1 for disabling cache capacity size limit.

from peerstohttp.

omgbox avatar omgbox commented on August 11, 2024

you could use bash script

nano /usr/bin/remove.sh

chmod u+x /usr/bin/remove.sh

#!/bin/bash
find /tmp/ -maxdepth 1 -cmin +120 -name "*" -exec /bin/rm -f {} \;

crontab -e use nano editor

*/45 * * * * /usr/bin/remove.sh

this will automatically start /usr/bin/remove.sh every 45 minutes and the bash script will check which files are older than 120 minutes and delete them.

just another way to remove tmp files

from peerstohttp.

Related Issues (16)

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.