Exemplo n.º 1
0
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }

            app.UseHttpsRedirection();

            app.UseRouting();

            app.UseAuthorization();

            app.UseEndpoints(endpoints =>
            {
                endpoints.MapControllers();
            });
            var      alphabet = new RussianAlphabet();
            var      time     = new Stopwatch();
            IIndexer indexer  = StaticVariables.Container.Resolve <IIndexer>(new ResolverOverride[] {
                new ParameterOverride("alphabet", alphabet)
            });

            time.Start();
            StaticVariables.Index = indexer.CreateIndex(StaticVariables.Dictionary);
            time.Stop();
            Console.WriteLine("Cretae Index: " + time.ElapsedMilliseconds.ToString());
            Console.WriteLine(indexer.GetType().ToString());
        }