refactoring: renamed repo/block to repo/content

Also introduced strongly typed content.ID and manifest.ID (instead of string)

This aligns identifiers across all layers of repository:

blob.ID
content.ID
object.ID
manifest.ID
This commit is contained in:
Jarek Kowalski
2019-06-01 20:11:40 -07:00
parent 916da07e0f
commit 54edb97b3a
100 changed files with 2692 additions and 2658 deletions

View File

@@ -4,7 +4,7 @@
"context"
"github.com/kopia/kopia/repo"
"github.com/kopia/kopia/repo/block"
"github.com/kopia/kopia/repo/content"
)
var (
@@ -16,7 +16,7 @@
)
func runCacheSetCommand(ctx context.Context, rep *repo.Repository) error {
opts := block.CachingOptions{
opts := content.CachingOptions{
CacheDirectory: *cacheSetDirectory,
MaxCacheSizeBytes: *cacheSetMaxCacheSizeMB << 20,
MaxListCacheDurationSec: int(cacheSetMaxListCacheDuration.Seconds()),