Implement an in-memory key-value store that supports the following operations:
set(key, value, ttl): Stores the key-value pair in the store. The ttl
parameter specifies the time, in seconds, after which the key should expire and be removed from the store. If ttl
is not provided, the key should persist indefinitely.
get(key): Retrieves the current value for the given key if it exists and has not expired; otherwise, returns an appropriate value (e.g., null
or similar) indicating that the key is unavailable.
count(): Returns the total number of keys currently stored (only counting keys that have not expired).
Additional requirements:
get()
or external triggers.Design and implement this key-value store. Ensure your solution is well-tested and documented.