The Wayback Machine - http://web.archive.org/web/20210813112007/https://github.com/topics/redistimeseries
Skip to content
#

redistimeseries

Here are 18 public repositories matching this topic...

shaunsales
shaunsales commented Sep 3, 2020

Currently when a RedisResult[] is returned from a TS.RANGE or similar query, we enumerate the entire result and allocate it to a new IReadOnlyCollection. This feels unnecessary, and iteration should be left up to the user.

private static TimeStamp ParseTimeStamp(RedisResult result)
{
	if (result.Type == ResultType.None) return default;
	return new TimeStamp((long)result);
}

private

Improve this page

Add a description, image, and links to the redistimeseries topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the redistimeseries topic, visit your repo's landing page and select "manage topics."

Learn more