O_WRONLY
O_WRONLY
Hello, I think the way the code works is intentional. ```go // Config for BigCache type Config struct { ... //Default value is 0 which means unlimited size. When the...
Hello, I think this problem is because Reset() did not reset the cacheShard.Stats ```go func (c *BigCache) Reset() error { for _, shard := range c.shards { shard.reset(c.config) } return...
@alexandregv Like ths?
Here's my environment * GCC : 13.1.1 * Architecture: Linux arch 6.3.8-arch1-1 x86_64
I think you need to consider the order of "include". Not like this ```c #include #include ``` like this ```c #include #include ```