Hey, thanks for this great library! At the moment I'm developing an application where I need to assign jobs to workers. As this happens in multiple threads, I need to make sure that no job gets assigned to two workers. My idea was to use a query like
> UPDATE jobs SET worker_id=xxx WHERE worker_id IS NULL LIMIT 1 > As far as I can see UPDATE...LIMIT is not supported by jooq. Did I miss anything? Do you have an idea how to implement this using jooq? Thank you! Cheers, Sebastian -- You received this message because you are subscribed to the Google Groups "jOOQ User Group" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
