我需要设计共享服务
示例场景:
User 1 logs into web service localhost:8080/checkin?latitude=98.6&longitude=95.2
User 2 logs into web service localhost:8080/checkin?latitude=78.9&longitude=84.9
User 3 logs into web service localhost:8080/checkin?latitude=85.3&longitude=73.5
我需要设计一个服务,它可以从所有用户获取纬度和经度,并返回最近的用户对。
我该如何编写这种共享服务? 或者是否有适合这种情况的服务器应用程序?
感谢。
答案 0 :(得分:0)
您可以使用单例模式,其中任何一个选项都有效。