momentohq / client-sdk-php

Official PHP SDK for Momento Serverless Cache
Apache License 2.0
12 stars 5 forks source link

feat: Support fractional TTLs via floats/doubles #183

Closed GrahamCampbell closed 4 months ago

GrahamCampbell commented 4 months ago

Maintains a BC interface (assuming we say extending the class is not a valid use case), enabling ms-precision of TTLs.

FYI 1, float nearly always means "double" in PHP land - the type depends on the CPU. FYI 2, due to needing to support PHP 7.4, we can't use union types, only type-doc.

GrahamCampbell commented 4 months ago

Moved to #187.