Home Download Docs Code Community
import "perkeep/pkg/blobserver/cond"
Overview
Index

Overview ▾

Package cond registers the "cond" conditional blobserver storage type to select routing of get/put operations on blobs to other storage targets as a function of their content.

Currently only the "isSchema" predicate is defined.

Example usage:

  "/bs-and-maybe-also-index/": {
	"handler": "storage-cond",
	"handlerArgs": {
		"write": {
			"if": "isSchema",
			"then": "/bs-and-index/",
			"else": "/bs/"
		},
		"read": "/bs/"
	}
  }

Index

Package files

cond.go

Website layout inspired by memcached.
Content by the authors.