ccache/configuration.go

38 lines
666 B
Go
Raw Normal View History

2013-10-19 02:56:28 +02:00
package ccache
type Configuration struct {
size uint64
buckets int
itemsToPrune int
promoteBuffer int
}
func Configure() *Configuration {
return &Configuration{
buckets: 64,
itemsToPrune: 500,
promoteBuffer: 1024,
2013-10-19 14:36:33 +02:00
size: 500 * 1024 * 1024,
2013-10-19 02:56:28 +02:00
}
}
2013-10-19 14:36:33 +02:00
func (c *Configuration) Size(bytes uint64) *Configuration {
c.size = bytes
2013-10-19 02:56:28 +02:00
return c
}
2013-10-19 14:36:33 +02:00
func (c *Configuration) Buckets(count int) *Configuration {
c.buckets = count
2013-10-19 02:56:28 +02:00
return c
}
2013-10-19 14:36:33 +02:00
func (c *Configuration) ItemsToPrune(count int) *Configuration {
c.itemsToPrune = count
2013-10-19 02:56:28 +02:00
return c
}
2013-10-19 14:36:33 +02:00
func (c *Configuration) PromoteBuffer(size int) *Configuration {
c.promoteBuffer = size
2013-10-19 02:56:28 +02:00
return c
}