SenseNet / sn-search-lucene29

sensenet Search engine implementation using Lucene.Net 2.9
GNU General Public License v2.0
1 stars 0 forks source link

[Service] rethink the hosting model of the Search Service #17

Closed tusmester closed 4 years ago

tusmester commented 4 years ago

Currently the Search Service is a WCF Service hosted inside a Windows Service. These are legacy technologies and make it hard to deploy the service in a modern environment. Evaluate the options we have:

  1. deploy the whole service as it is, on a Virtual Machine
  2. deploy the whole service as it is, in a Docker container with a mounted index folder
  3. move to .Net Core with an beta (?) version of CoreWCF (a port of WCF on .Net Core)
  4. move to .Net Core and use ASP.NET Web API or gRPC