sm
/
cache
1
0
Fork 0

Uppercase C

This commit is contained in:
Patrick Mylund Nielsen 2012-01-29 04:07:23 +01:00
parent d5cd41da53
commit fdcb2f0aa6
1 changed files with 4 additions and 4 deletions

8
README
View File

@ -140,19 +140,19 @@ func (c *Cache) DeleteExpired()
func (c *Cache) Flush() func (c *Cache) Flush()
Deletes all items from the cache. Deletes all items from the cache.
func (c *cache) Save(w io.Writer) error func (c *Cache) Save(w io.Writer) error
Writes the cache's items (using Gob) to an io.Writer. Returns an error if Writes the cache's items (using Gob) to an io.Writer. Returns an error if
the serialization fails, e.g. because there are unserializable objects like the serialization fails, e.g. because there are unserializable objects like
channels in the cache. channels in the cache.
func (c *cache) SaveFile(fname string) error func (c *Cache) SaveFile(fname string) error
Saves the cache's items to the given filename, creating the file if it Saves the cache's items to the given filename, creating the file if it
doesn't exist, and overwriting it if it does. doesn't exist, and overwriting it if it does.
func (c *cache) Load(r io.Reader) error func (c *Cache) Load(r io.Reader) error
Adds (Gob-serialized) cache items from an io.Reader, excluding any items that Adds (Gob-serialized) cache items from an io.Reader, excluding any items that
already exist in the current cache. already exist in the current cache.
func (c *cache) LoadFile(fname string) error func (c *Cache) LoadFile(fname string) error
Loads and adds cache items from the given filename, excluding any items that Loads and adds cache items from the given filename, excluding any items that
already exist in the current cache. already exist in the current cache.