Example #1
0
// Implements delete method
func (enum *Ascii_protocol_enum) delete(storage *cache.LRUCache) (string, error) {
	if storage.Flush(enum.key[0]) {
		return "DELETED\r\n", nil
	}
	return NOT_FOUND, nil
}