Giter VIP home page Giter VIP logo

watchpilot-backend's Introduction

watchpilot-backend

Backend for watchpilot app

Under development.

Video demos available in YouTube playlist

Updates

  • 27th March 2024: Changed application structure a little to work best with features I'll be adding
  • 5th May 2024: Added trailers, added data mappers/transformers to have a structured/consistent response

watchpilot-backend's People

Contributors

michaelthedev avatar

Stargazers

Jeffery Orazulike avatar

Watchers

 avatar

watchpilot-backend's Issues

Cache: add ability to set exact expire timestamp

Option to add DateTimeImmutable object or string as expiry instead of default int

Change

Old:

Cache::store('foo', 'bar', 3600);
Cache::getOrSet('foo', function() {
  return 'bar';
}, 3600); // 1 hour

New:

$expiry = (new \DateTimeImmutable())
  ->modify('+1hour');

// as string
$expiry = (new \DateTimeImmutable())
  ->modify('+1hour')
  ->format('Y-m-d H:i:s');

// using Carbon //
$expiry = now()
  ->addHour()
  ->toDateTimeImmutable();

// as string
$expiry = now()
  ->addHour()
  ->toDateTimeString();

Cache::store('foo', 'bar', $expiry); // direct

Cache::getOrSet('foo', function() {
  return 'bar';
}, $expiry);

Reference

public static function store(string $key, mixed $value, int $expiry = 0): void

int $expiry = 3600

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.