Skip to content

Instantly share code, notes, and snippets.

@altfatterz
Last active August 29, 2015 14:03
Show Gist options
  • Save altfatterz/faa2dababfc1c1b13475 to your computer and use it in GitHub Desktop.
Save altfatterz/faa2dababfc1c1b13475 to your computer and use it in GitHub Desktop.
@RequestMapping(method = RequestMethod.GET)
public @ResponseBody Page lookup(@RequestParam String name) {
long start = System.currentTimeMillis();
Page page = facebook.findPage(name);
long elapsed = System.currentTimeMillis() - start;
page.setLookupTime(elapsed);
return page;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment