From ae3399479d1c88011e826821122bbd0278e6b4f3 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Wed, 3 Oct 2018 21:03:15 +0000 Subject: [PATCH] --- devdocs/specs/core-performance.txt | 2 ++ server/AyaNova/util/Seeder.cs | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/devdocs/specs/core-performance.txt b/devdocs/specs/core-performance.txt index 9e40f1ac..aea1a621 100644 --- a/devdocs/specs/core-performance.txt +++ b/devdocs/specs/core-performance.txt @@ -67,6 +67,7 @@ SELECT indexrelname,cast(idx_tup_read AS numeric) / idx_scan AS avg_tuples,idx_s WORK IN PROGRESS: +=-=-=-=-=-=- Search result list NAME FETCHER in : //Before attempt to optimize name fetcher (unknown number of results) @@ -102,3 +103,4 @@ I'm going to enact a policy to index id,name in all objects that have many colum Ok, it just makes logical sense to keep the indexes even if slightly slower, I can revisit this later, the difference is miniscule. I suspect with a bigger database there would definitely be better peformance. +=-=-=-=-=-=-=-=-=-=-=-=- \ No newline at end of file diff --git a/server/AyaNova/util/Seeder.cs b/server/AyaNova/util/Seeder.cs index 17449565..4f1da171 100644 --- a/server/AyaNova/util/Seeder.cs +++ b/server/AyaNova/util/Seeder.cs @@ -273,7 +273,6 @@ namespace AyaNova.Util public static long RUNNING_COUNT = 0; public static string Uniquify(string s) { - //return s + " " + ((DateTimeOffset)DateTime.Now).ToUnixTimeSeconds(); return s + " " + (++RUNNING_COUNT).ToString(); }