Categorygithub.com/xavivars/urlindex
module
0.5.7
Repository: https://github.com/xavivars/urlindex.git
Documentation: pkg.go.dev

# README

UrlIndex-GO

A Go library to store efficiently (both in terms of space and time point of view) URL list.

It could actually be used to store any string-like content, when the goal is checking the existance. But it's been designed specifically with URLs in mind, to be used as a library to write Skipper plugins

It's core exposed data structured is

type UrlIndex struct {
	lastUpdate time.Time
	fst        *vellum.FST
	remotePath string
	localPath  string
	defaultResponse bool
}

# Packages

No description provided by the author
No description provided by the author
No description provided by the author