Stephen Margheim

Results 153 comments of Stephen Margheim

All good. I figured. Let me know if/when you want me to update the PR with head of main

Would this implementation be page specific, i.e. open the PDF to a specified page? This would be a truly killer feature

I would rather not have this closed, so I'm hoping this comment will keep it open

Perhaps, but that isn't a full solution to my needs. I need to be able to allow a job to be "staged" and not enqueued yet, through something like a...

I think that is a great decision for Sidekiq itself, and I believe that exposing a serialization interface can and should be entirely separate from thinking about a database at...

Here would be my initial attempt at persuasion: The simplicity at the heart of Sidekiq that a job is just a hash that can easily be serialized into Redis drives...

> But the issue is that I don't want to include `enqueued_at` in that String. So you won't be able to push the raw String directly to Redis, you will...

@mperham: What about this as the interface: ```ruby Job.serialize(*args, **opts) => Hash Job.deserialize(hash) => job job.serialized ```