Codey Oxley
Codey Oxley
Firstly, you're doing I/O inside of `Update()` which is going to make weird things happen. Check out this tutorial: https://github.com/charmbracelet/bubbletea/tree/master/tutorials/commands/ Secondly, because there's no `viewport.AppendContent()`, you'll need a separate buffer...
Would love this as well. :)
@goccy Sorry! I got pulled away into other things, and stopped using `go-yaml`. One thing I dislike about my company using Github is that work notifications bury open source ones.
Looks like it's the combination of `UseOrderedMap` and `CommentToMap` that causes it. Works fine without preserving ordering...
Submitted https://github.com/goccy/go-yaml/pull/346 to address.
@janisz Sure thing. We're already hashing `obj` in different places, and use the same hashing approach for other use-cases as well. So I'm opting to format/parse instead of add a...
> We use string as a key just for as it was our historical use case But it's `uint64` internally isn't it? Or was that a change at some point....
Or have a different package so that the name isn't compromised. We did this with `lazylru`: - `github.com/TriggerMail/lazylru/generic.LazyLRU` - `github.com/TriggerMail/lazylru.LazyLRU`
@Mavis2103: The motivation for having expiring and eviction as two separate processes in caches is to spend a deterministic amount of time locking the entries. Sharding is further used to...