Peter Stalman
Peter Stalman
It can be, but any kind of key-value store will work.
Another workaround is to use Moment.JS as the formatter: ```javascript jQuery.datetimepicker.setDateFormatter({ parseDate: function (date, format) { var d = moment(date, format); return d.isValid() ? d.toDate() : false; }, formatDate: function...
@JanMa, here's a workaround I've shared this previously that you can use. You can enable the Jaeger tracer and set the sampling rate to 0, but it will still send...
I've come full circle. I was looking for a tool to do this. I (re-)discovered rhash. Then I tried to search for a way for it to display overall progress...
Now that I think about it, there's also a similar slowdown when the game is saved. I attributed it to just processing needed for the save, but it might just...
Maybe related to #1471?
Ah, that makes sense. My issue though is more about there being no debug info to suggest what is wrong and why. I would think if it can't start a...
So I define several routers in a file. This includes different host names and SSL certs, etc. It doesn't really matter where this comes from, just that it is generated...
+1. Currently this can be accomplished using an expression, but it's kinda verbose and not database agnostic. Something like so: $rows = (new \yii\db\Query()) ->select('*') ->from(new \yii\db\Expression('`tablename` USE INDEX (`my_index`)'))
https://github.com/jeffharrell/minicart/issues/284#issuecomment-292380742