skip to Main Content

MongoDB 10m search documents

How can I optimize mongoDB search if I have 10+ million documents in one collection? If anything, please, don't advise me to switch to mysql. I need mongodb specifically For example one of the logs { "_id": { "$oid": "Some…

VIEW QUESTION

Loop over JSON arrays in python

I wanted to loop over a section in my JSON File and render the geometry based on their names in the File. main.py import json data = json.load(open('src/test.json')) for geo in data["geometry"]: if geo == "rect: Geometry.rectangle(draw=pen, x=geo["x"], y=geo["y"], width=geo["width"],…

VIEW QUESTION
Back To Top
Search