Avoid so much hardcoding of db table in Database backend

Created on 19 July 2024, 9 months ago

Currently the built-in database backend has db table name repeated many times in its code (Drupal\advancedqueue\Plugin\AdvancedQueue\BackendDatabase). This to be avoided and to use a member property to keep the db table name and use that property replacing hardcoded table name across the code.

I faced this as an issue when extending the built-in database backend to use a different table to store jobs. Having the table name hardcoded, it forces me to duplicate most of the member methods just to replace the table name. Having table name on member property variable, the new extending backend class can have much less code as most of logic are same.

(As a background info: I want to use a new table just to make "job_id" column in the table "varchar" instead of "serial". So, we can set non numeric custom strings as job IDs. Having custom strings as job ids will help to identify whether a certain job is already queued/processed before creating it. We can construct Job ID of certain patterns values depending on the job)

📌 Task
Status

Active

Version

1.0

Component

Code

Created by

🇮🇳India junaidpv Kannur, Kerala

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Production build 0.71.5 2024