This commit is contained in:
2018-10-03 18:10:45 +00:00
parent 896521fbed
commit aee2234092
6 changed files with 47 additions and 63 deletions

View File

@@ -375,32 +375,7 @@ namespace AyaNova.Biz
watch.Stop();//###################### PROFILING
var TimeToBuildSearchResultReturnList = watch.ElapsedMilliseconds;//###################### PROFILING
//Before attempt to optimize name fetcher
//22548, 21187, 20462, 22336, 20094 - AVG = 21325
/*
explain analyze SELECT m.name
FROM awidget AS m
WHERE m.id = 12989
LIMIT 1
"Limit (cost=0.29..8.30 rows=1 width=27) (actual time=0.079..0.080 rows=1 loops=1)"
" -> Index Scan using awidget_pkey on awidget m (cost=0.29..8.30 rows=1 width=27) (actual time=0.077..0.077 rows=1 loops=1)"
" Index Cond: (id = 12989)"
"Planning time: 0.098 ms"
"Execution time: 0.102 ms"
//All index data
select * from pg_stat_user_indexes
*/
return ResultList;
}