今は私はサーバーにHTTPリクエストをしていますが、いくつかのJSONデータとともにGETリクエストを送信する必要があります。私が今やっていることは「うまくいく」とは言いますが、それぞれの要求がほぼ15FPSに低下するのでひどいです。ここに私のコードです。ここでUnityのサーバーにGETリクエストを行う最良の方法
は私のGETクエリである:ここで
{
"query": {
"match_all": {}
},
"size": 1,
"sort": [{
"@timestamp": {
"order": "desc"
}
}]
}
は私のstartメソッドである:ここで
void Start()
{
queryString = File.ReadAllText(Application.streamingAssetsPath +"/gimmeData.json");
StartCoroutine(SetJsonData());
}
は、私が実際に要求を行うように設定している共同coutineです:
private IEnumerator SetJsonData()
{
// Make a new web request with the .net WebRequest
request = WebRequest.Create(elk_url);
yield return null;
request.ContentType = "application/json";
request.Method = "POST";
buffer = Encoding.GetEncoding("UTF-8").GetBytes(queryString);
// Put this yield here so that I get higher FPS
yield return null;
requestStream = request.GetRequestStream();
requestStream.Write(buffer, 0, buffer.Length);
requestStream.Close();
// Again this is about getting higher FPS
yield return null;
response = (HttpWebResponse)request.GetResponse();
// Wait until we have all of the data we need from the response to continue
yield return requestStream = response.GetResponseStream();
// Open the stream using a StreamReader for easy access.
reader = new StreamReader(requestStream);
// Set my string to the response from the website
JSON_String = reader.ReadToEnd();
yield return null;
// Cleanup the streams and the response.
reader.Close();
requestStream.Close();
response.Close();
yield return null;
// As long as we are not null, put this in as real C# data
if (JSON_String != null)
{
// Wait until we finish converting the string to JSON data to continue
yield return StartCoroutine(StringToJson());
}
if(dataObject != null)
{
// Send the data to the game controller for all of our hits
for(int i = 0; i < dataObject.hits.hits.Length; i++)
{
StartCoroutine(
gameControllerObj.CheckIpEnum(dataObject.hits.hits[i]._source));
}
}
// As long as we didn't say to stop yet
if (keepGoing)
{
yield return null;
// Start this again
StartCoroutine(SetJsonData());
}
}
FPSがすでに改善されているため、私はそれらの "yield return null"をすべて持っています。
これをどのように最適化できますか?そこにGETデータを送ることができるWebリクエストを作る良い方法はありますか?私はUnityWebRequestが事であることを知っていますが、それは私が持っているJSONデータを送ることを許しません。