Skip to content

⚡ Optimize getRecipeStats with parallel queries#1

Open
VarunB453 wants to merge 2 commits intomainfrom
perf/optimize-get-recipe-stats-6665345186731632619
Open

⚡ Optimize getRecipeStats with parallel queries#1
VarunB453 wants to merge 2 commits intomainfrom
perf/optimize-get-recipe-stats-6665345186731632619

Conversation

@VarunB453
Copy link
Owner

💡 What: Optimized getRecipeStats in src/services/recipeService.ts to run database queries in parallel.
🎯 Why: Previously, the function awaited three independent Supabase queries sequentially. This added unnecessary latency.
📊 Measured Improvement: Simulated benchmark shows a reduction in execution time from ~300ms to ~100ms (assuming 100ms per query), a ~66% improvement.


PR created automatically by Jules for task 6665345186731632619 started by @VarunB453

Parallelized the database queries in `getRecipeStats` using `Promise.all`. This reduces the latency of the function by executing the `total`, `approved`, and `userRecipes` (if applicable) queries concurrently rather than sequentially.

Based on benchmark simulation (3 queries x 100ms latency), this change is expected to improve performance by approximately 66% (300ms -> 100ms).

Co-authored-by: VarunB453 <116241000+VarunB453@users.noreply.github.com>
@google-labs-jules
Copy link

👋 Jules, reporting for duty! I'm here to lend a hand with this pull request.

When you start a review, I'll add a 👀 emoji to each comment to let you know I've read it. I'll focus on feedback directed at me and will do my best to stay out of conversations between you and other bots or reviewers to keep the noise down.

I'll push a commit with your requested changes shortly after. Please note there might be a delay between these steps, but rest assured I'm on the job!

For more direct control, you can switch me to Reactive Mode. When this mode is on, I will only act on comments where you specifically mention me with @jules. You can find this option in the Pull Request section of your global Jules UI settings. You can always switch back!

New to Jules? Learn more at jules.google/docs.


For security, I will only act on instructions from the user who triggered this task.

@netlify
Copy link

netlify bot commented Jan 31, 2026

Deploy Preview for aharaa ready!

Name Link
🔨 Latest commit d270928
🔍 Latest deploy log https://app.netlify.com/projects/aharaa/deploys/697da687fb98ed0008f36230
😎 Deploy Preview https://deploy-preview-1--aharaa.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

The `useAdmin` hook was imported and called in `src/pages/CrazyRecipeDetail.tsx` but the file `src/hooks/useAdmin.tsx` does not exist in the project. The hook's return value `isAdmin` was unused in the component logic.

This change removes the unused import and hook call to resolve the build error.

Co-authored-by: VarunB453 <116241000+VarunB453@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant