Generation of 40 million web pages. Is it reasonable?
Unanswered
Bigeye scad posted this in #help-forum
Bigeye scadOP
Hello. I need to improve the SEO for my auto parts website. I have a ready-made SPA for React and 40 million unique kits (car - auto parts).
How can I improve SEO optimization? I see two options:
1) make an SSR
Where is it better to implement this: on Next or React ssr?
2) generate all pages in advance and place static files on the server.
I generated 100 pages in 8.571 seconds, i.e. 0.08571 seconds per page. That is, 40 million pages will be generated in 39 days.
If you make an effort, you can reduce the time, but is it worth it? Why?
When should I use pre-rendering and when not?
Thank you.
@Anay-208
How can I improve SEO optimization? I see two options:
1) make an SSR
Where is it better to implement this: on Next or React ssr?
2) generate all pages in advance and place static files on the server.
I generated 100 pages in 8.571 seconds, i.e. 0.08571 seconds per page. That is, 40 million pages will be generated in 39 days.
If you make an effort, you can reduce the time, but is it worth it? Why?
When should I use pre-rendering and when not?
Thank you.
@Anay-208
13 Replies
Why not just generate a dynamic site map with dynamic pages
@Anay-208 Why not just generate a dynamic site map with dynamic pages
Bigeye scadOP
I see a plus in prerendering because the user will receive the content faster.
how generate a dynamic site map?
how generate a dynamic site map?
@Anay-208 https://nextjs.org/docs/app/api-reference/file-conventions/metadata/sitemap#generating-multiple-sitemaps
Bigeye scadOP
Thank you very much for the reply!
@Anay-208 Where is it better for SSR: on Next or React SSR?
Let me know if you’ve any other query relating to it
@Bigeye scad <@755810867878297610> Where is it better for SSR: on Next or React SSR?
Nextjs basically has SSR
I believe best will be better
Bigeye scadOP
Okay, okay
I believe too
I believe too
@Anay-208 Why not just generate a dynamic site map with dynamic pages
If your issue is resolved, mark this message as a solution
@Bigeye scad Hello. I need to improve the SEO for my auto parts website. I have a ready-made SPA for React and 40 million unique kits (car - auto parts).
How can I improve SEO optimization? I see two options:
1) make an SSR
Where is it better to implement this: on Next or React ssr?
2) generate all pages in advance and place static files on the server.
I generated 100 pages in 8.571 seconds, i.e. 0.08571 seconds per page. That is, 40 million pages will be generated in 39 days.
If you make an effort, you can reduce the time, but is it worth it? Why?
When should I use pre-rendering and when not?
Thank you.
<@755810867878297610>
You could also just generate the pages you think will be most visited. E.g. for news websites you'd statically generate the latest X articles because those are the ones most visited/sought after.
The other articles you can leave for dynamic generation upon request.
The other articles you can leave for dynamic generation upon request.
@Bigeye scad Resolved?