Ryan Hungate

Results 13 comments of Ryan Hungate

Just throwing it out there - I had this same problem today and ended up tying it to the "dynamic component" node type. As soon as I removed that from...

@matthewhutchings i ended up just extending the 2 classes and overriding the methods so that it didn't try to save the file to the disk, and made sure to add...

Sure that makes sense @nea - It's been a while since I needed to work with this. I can't recall why the file needed to be saved in the first...

Ah, i actually was kind of under the impression that if say you had a job named ( store.10.order.100.service ) that if you passed in that same id, that it...

speaking of persisting… are there any issues that have come up using Redis for the storage in the past that caused pain? I currently use a mysql storage on my...

Yeah man, good explanation. Our company processes a lot of stuff using my current queue with mysql, and to touch on the delete thing, I just grab the first item,...

Cool, so basically to net it all out… when a job is run, its simply not in the queue anymore because it’s removed right then from the queue array… and...

Hey, one more thing… can expand just a tad on using the named key approach, and updating the job vs duplicating by using the setUp()? I feel like im a...

Hey Dan, Sorry, got busy yesterday. So a super quick example is this: ``` /// pushing the job somewhere in code $token = Resque::enqueue($queue, 'TestJob', $data, true); \Resque::redis()->set("myapp:job_ref:job_name", $token); ///...

Man that's solid... thanks. since I am wrapping this in a Laravel package, i dont even have to do anything crazy every time I queue something up, i can just...