How big can a user agent string get?
If you were going to store a user agent in a database, how large would you accomdate for? I found this technet article … Read more
If you were going to store a user agent in a database, how large would you accomdate for? I found this technet article … Read more
I’m using the Google “Page Speed” plug-in for Firefox to access my web site. Some of the components on my page is indicated … Read more
From the RFC 2616 http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9.1 no-cache If the no-cache directive does not specify a field-name, then a cache MUST NOT use the response … Read more
What’s the difference between HTTP 301 and 308 status codes? 301 (Moved Permanently): This and all future requests should be directed to the … Read more
So I’ve been toying around with HTTP for fun in telnet now (i.e. just typing in telnet google.com 80 and putting in random … Read more
In RESTful style programming, we should use HTTP methods as our building blocks. I’m a little confused though which methods match up to … Read more
I’m doing a simple http GET in Go: client := &http.Client{} req, _ := http.NewRequest(“GET”, url, nil) res, _ := client.Do(req) But I … Read more
Assuming a URL of: www.example.com/?val=1#part2 PHP can read the request variables val1 using the GET array. Is the hash value part2 also readable? … Read more
What is the standard pattern of orchestrating microservices? If a microservice only knows about its own domain, but there is a flow of … Read more
Closed. This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so … Read more