Patrick McDougle
Patrick McDougle
Your database probably needs to be configured to accept 4 byte utf-8 characters. Here's the [documentation for mysql](https://dev.mysql.com/doc/refman/5.5/en/charset-unicode-utf8mb4.html).
Moving this to a draft to prevent accidental merges while we work through the [issue in the comments](https://github.com/tannerlinsley/react-query/pull/2690#discussion_r711868206).
Slack has no unique tags that they implement. The article states that Slack will take information from as much as you have implemented. Ideally you have meta, og and twitter...
Is the plan to eventually continue on the 7 roadmap items listed above? Would you welcome community contributions toward that goal, or should the community sit tight until this thread...
One possible optimization would be to dereference all the expired keys in one statement vs [while looping over them](https://github.com/node-cache/node-cache/blob/master/_src/lib/node_cache.coffee#L569-L570). By keeping a reference to all the to-be-evicted-soon objects in one...
The API of check could change. Right now check actually does the delete. Instead it could return a boolean of if the key should be evicted. Then we could collect...
I also outlined some suggestions on how to minimize GCs that might be triggered while evicting keys in #215
Try calling testMe twice. If you're doing two invocations of the same script in the CLI that's not going to work. It only persists values in memory for the same...
Similar / related to this request it would also be cool to get a type that maps CONTENT_TYPE names to their interface types. For example: ``` export type ContentTypeMap =...
I fixed this by adding ``` "tsBuildInfoFile": ".tsbuildinfo" ``` to my tsconfig file.