దాని API ద్వారా వేగవంతం శోధన కమ్యూనికేట్ చేయడానికి, మేము QRServer రన్ ఇది పోర్ట్ తెలుసుకోవాలి.
నేను గుర్తించడం ఈ దశలను తరువాత:
- Log into the FAST admin site (http://server:port/admin).
- Navigate to System Overview.
- Locate "Search Dispatcher" and click the spyglass icon:
- I successfully used the value, 15100 for "Info Name" = "http":
గమనికలు:
1. Port 15100 appears to be the default out-of-the-box port number for the QRServer.
2. Use this code similar to the following to instantiate a connection to FAST:
ISearchFactory searchFactory; NameValueCollection nameValueCollection = కొత్త NameValueCollection(); nameValueCollection.Add("fastsearchengine", "Com.FastSearch.Esp.Search.Http.HttpSearchFactory"); nameValueCollection.Add("Com.FastSearch.Esp.Search.Http.QRServers", "fastdemoback:15102"); nameValueCollection.Add("Com.FastSearch.Esp.Search.Http.RequestMethod", "GET"); searchFactory = SearchFactory.NewInstance(nameValueCollection);
3. If you pick a wildly incorrect port, you get a helpful error message:
4. అయితే, if you pick the port number listed on the overview (15102) you don’t get that helpful error message. అందుకు బదులుగా, later when you try to access any data via a search or reference a FAST view, you get an error. Debugging shows that the searchFactory’s view count is zero. You’ll be given the message "Failed to fetch Search View List".
</చివర>
Technorati టాగ్లు: వేగవంతం
I found this extremely useful, పాల్. Thanks for sharing this. I have not been sent on any fast training course and I’ve been trying to reverse engineer the ESP web parts project in codeplex to build a proof-of-concept prototype.