sujay
Thu Mar 21 2024
Sidekiq Capsule allows to configure queues to execute jobs serially.
Before Sidekiq version 7, to manage dependencies between jobs, a delay was often manually set with
#rails #sidekiq
Before Sidekiq version 7, to manage dependencies between jobs, a delay was often manually set with
set(wait: 30.seconds)
to ensure the sequential execution of dependent jobs. This can be achieved now by setting their concurrency to 1.
Sidekiq.configure_server do |config|
config.capsule("capsule") do |cap|
cap.concurrency = 1
cap.queues = %w[capsule-queue]
end
end
#rails #sidekiq
ayushsrivastava
Mon Mar 18 2024
Use pluck to fetch only the necessary columns if you don't need the entire object
This reduces memory usage and database load
For example
The above code will return an array of name of users who are above age of 18
#rails #db
This reduces memory usage and database load
For example
adults = User::User.where("age > ?", "18").pluck(:name)
The above code will return an array of name of users who are above age of 18
#rails #db
soniya.rayabagi
Mon Mar 18 2024
ps aux | grep defunct
displays information about any zombie processes (that have completed execution but still have an entry in the process table with specific PID because, their parent process has not yet collected their exit status) currently running on the system.#devops
vaibhav.yadav
Fri Mar 15 2024
When eslint is not working on your repository in local for any reason you can try restarting the ES Lint Server on VS Code, and if the issue is cause cause server is not reading the config from root directory you can set
#javascript #eslint
root: true
in your eslint config file, that should resolve the issue. And to fix all your lint issue in a single commit you can use command npx eslint . --fix
.#javascript #eslint
ayushsrivastava
Fri Mar 15 2024
Rails
1. It first attempts to run
2. If the database does not exist, it falls back to
In summary,
#rails
db:prepare
command follows these steps:1. It first attempts to run
db:migrate
to apply any pending migrations. This step ensures that the database schema is up to date with the latest changes defined in your migration files.2. If the database does not exist, it falls back to
db:setup
to create the database, load the schema, and seed it with initial data. This step is crucial for setting up a new database or ensuring that an existing database is correctly initialized.In summary,
rails db:prepare
is a powerful command for ensuring your database is ready for use in your Rails application#rails
ayushsrivastava
Thu Mar 14 2024
The rails plugin command simplifies plugin management. Plugins can be installed by name or their repository URLs. You need to have Git installed if you want to install a plugin from a Git repo.
#rails #gem
$ rails plugin install
#rails #gem
satya
Thu Mar 14 2024
Consumable products does not have certain properties such as
Reason being, storable product needs accurate inventory tracking where as consumable product focuses on purchase and expense records without maintaining detailed inventory levels.
On Hand
& Forecasted
while Storable products has it.Reason being, storable product needs accurate inventory tracking where as consumable product focuses on purchase and expense records without maintaining detailed inventory levels.
syedsibtain
Wed Mar 13 2024
To create products in odoo.
• Navigate to Products > Products
• Click on "New" and fill in the necessary details like product name, sales price, cost, product type and any other relevant information.
• Click on "Save".
And now the product will be available in the Inventory Adjustment for us to add in stock.
#inventory-management #wms #odoo
• Navigate to Products > Products
• Click on "New" and fill in the necessary details like product name, sales price, cost, product type and any other relevant information.
• Click on "Save".
And now the product will be available in the Inventory Adjustment for us to add in stock.
#inventory-management #wms #odoo
satya
Wed Mar 13 2024
Delivery Order
in Odoo is used for sending goods from warehouse to customer and external parties, to transfer between warehouses use Internal Transfers
in Odoo.#inventory-management #wms #odoo
gautam
Tue Mar 12 2024
If using Podman (instead of Docker for Mac) and trivy for image scanning, trivy expects DOCKER_HOST env variable to be setup for scanning local images and fails unless DOCKER_HOST is pointing to the podman socket.
Fix:
#docker #devops
Fix:
$ export DOCKER_HOST="unix://$(podman machine inspect --format '{{.ConnectionInfo.PodmanSocket.Path}}')"
$ trivy image image_name
#docker #devops
Showing 17 to 19 of 71 results