Jason Barnabe
Jason Barnabe
My index in this test has only 1 record; I don't expect deletion to take very long at all. Nonetheless, I ran a test where I waited a few minutes...
Not sure exactly what details you're looking for... ``` > Customer.index.delete => {"uid"=>813, "indexUid"=>"Customer", "status"=>"enqueued", "type"=>"indexDeletion", "enqueuedAt"=>"2022-06-30T14:41:16.004113182Z"} ``` ``` [2022-06-30T14:41:16Z INFO actix_web::middleware::logger] 127.0.0.1 "DELETE /indexes/Customer HTTP/1.1" 202 122 "-" "Meilisearch...
After I call `Customer.index.delete`, that line is returned immediately. If it's asynchronous, then that result will always say "enqueued", but it still can be processed nearly instantaneously. I can then...
I put a debug statement in `#ms_ensure_init`. I can see that from a fresh console, `@ms_indexes` is empty, so the method executes all the way to the bottom. I run...
Calling `Customer.ms_clear_index!` instead of `Customer.index.delete` seems to be the correct thing to do after making a change. It will clear `@ms_indexes`. I suppose the operation is slightly different as this...
From a technical perspective, a central repository basically means creating a third "thing" that would have to be supported by one/both/all parties involved. I don't really see the benefit to...
One addition to what I posted above... There would need to be a way for a user on one site to "claim" the scripts relating to an account on another....
- "Callbacks" seem kind of weird to me, as these are different sites running different architectures, but maybe I'm just thinking of JS callbacks and you mean something else. Could...
I think a webhook-like notification may be overkill to start with. I think it's better to start with something a little dumb and see what makes sense after that. I...
If Greasy Fork were to allow external scripts with subresource integrity hashes: 1. We would have no history of the content of the page, so if a script did something...