A lot of stuff related to parsing; index page input validation

This commit is contained in:
Simon Martens
2023-09-17 15:29:51 +02:00
parent d86d508786
commit b15ce8793c
23 changed files with 294 additions and 60 deletions

View File

@@ -260,7 +260,7 @@ public class XMLInteractionService : IXMLInteractionService {
return res.ToList();
}
public void CreateSearchables(XDocument document) {
public void CreateCollections(XDocument document) {
if (document == null || _RootDefs == null) return;
int numProcs = Environment.ProcessorCount;
int concurrencyLevel = numProcs * 2;