Omkar Tenkale

Results 64 comments of Omkar Tenkale

## You need to add app:ci_animator because default animator will scale the center dot, and as height is wrap content, it'll appear as a strip ``` ``` **res/anim/indicator_no_scale.xml** ``` ```

With mongo profiling i can see 58 queries are run for 58000 rows The last 2 blocks of log ``` { "op" : "getmore", "ns" : "dev.Product", "cursorid" : 39369748207,...

Parse is still taking upto 10 seconds for 58000 items without any query constraints

The query i simple,this is the cloud codee async function indexTest(req,res){ console.time("timelog"); var Product = Parse.Object.extend("Product"); var query = new Parse.Query(Product); query.limit(1000000) var res = await query.find(); console.timeEnd("timelog"); console.time("timelog"); console.log("resp...

This is the log (pm2 logs 0) 0|app1 | timelog: 10.097s 0|app1 | resp size==58110 0|app1 | timelog: 0.145ms 0|app1 | info: Ran cloud function indexTest for user undefined with:...

How can i include execStats?

Here's what i could find Cloud code request from parse-dashboard console ``` > db.setProfilingLevel(2) { "was" : 0, "slowms" : -1, "ok" : 1 } > db.system.profile.find().pretty() { "op" :...

![slowquery1](https://user-images.githubusercontent.com/39808155/78002808-5a24d880-7355-11ea-946b-afde7e07a707.png) ![slowquery2](https://user-images.githubusercontent.com/39808155/78002824-60b35000-7355-11ea-848d-77db4b9bfa18.png)

> If your run a query against the database form the server the iterates through all the objects in you parouct tables, how long does it take? In mongoshell its...

Tried accessing db directly Included in index.js ``` const Config = require('./node_modules/parse-server/lib/Config'); const config = Config.get(Parse.applicationId); const mongoAdapter = config.database.adapter; app.get('/mongotest',async function(req, res) { console.time("connect") await mongoAdapter.connect(); const collection =...