Allow parameters in store URIs

This is to allow store-specific configuration,
e.g. s3://my-cache?compression=bzip2&secret-key=/path/to/key.
This commit is contained in:
Eelco Dolstra 2016-04-29 16:26:16 +02:00
parent aa3bc3d5dc
commit 95d20dfde9
9 changed files with 56 additions and 8 deletions

View file

@ -229,6 +229,12 @@ LocalStore::~LocalStore()
}
std::string LocalStore::getUri()
{
return "local";
}
int LocalStore::getSchema()
{
int curSchema = 0;