Hey, for storing 1 mil records, have you considered using a distributed database like Cassandra? It's designed for handling large amounts of unstructured or semi-structured data, and can scale horizontally to handle your needs. I've seen it work well for similar use cases in the past.
I had to Google translate it and I think you're asking about storing a million record database, right? In that case, a distributed DB system like Cassandra or MongoDB would be a good fit, just depends on your specific needs and tech stack.
I'm curious what kind of performance you're seeing on a 1 million entry database - what kind of queries and how often are you running them? I've had decent results with a properly indexed DB in SQLite, but I'm not sure how it compares to other DBs.