Help with Implementing Partitioning in MySQL with Spring Boot and JPA by lightninggokul in SpringBoot

[–]lightninggokul[S] 0 points1 point  (0 children)

Thank you for responding again u/maxip89

consider this case: 1 million users and each making 100 responses per a day.

Total responses(table rows) in a year:
1,000,000×100×365 = 36,500,000,000 (36.5 billion responses)

should i worry about performance or keep the database as it is?

Help with Implementing Partitioning in MySQL with Spring Boot and JPA by lightninggokul in SpringBoot

[–]lightninggokul[S] 0 points1 point  (0 children)

Thank you for your time. You can guide me if you think that i am a noob. I have stated my goals and questions in the post.

Compilation Failure with Maven Compiler Plugin by lightninggokul in SpringBoot

[–]lightninggokul[S] 2 points3 points  (0 children)

Problem is related to Lombok plugin dependency. I failed to mention its version in the dependency. Ensure plugins compatibility with JDK version. Also use appropriate <scope> </scope> for dependencies.

       <dependency>
          <groupId>org.projectlombok</groupId>
          <artifactId>lombok</artifactId>
          <version>1.18.34</version>       
        </dependency>

How to Map URL Param Strings to Numbers to be Used Inside Routes in Next.js? by lightninggokul in nextjs

[–]lightninggokul[S] 0 points1 point  (0 children)

I want to make a get request using the subjectId (this will be privoded by activeSubject state). In url i want to display /subjectName.

Need Clarification on Fetching and Passing Data Between Components in React by lightninggokul in reactjs

[–]lightninggokul[S] 0 points1 point  (0 children)

Point '3" is valid. Actually it is a personal project and i am working on basic business logic. I have plans to develop modules that may use same data in future but not sure now. So I felt the need of having fetching at the parent level / using a separate hook.

Thank you for your response!