John Abraham
John Abraham

Reputation: 18791

Developing for Google Glass and incorperating googles app engine

After watching this excellent video on google glass and Rails development. I learned sooo much about how to design and create for glass. Being a new to Rails but getting my bearings I want to figure out how to invest my research time. That being said, my questions is about optimizations between rails and native app engine support:

Since I/O 2013 Google announced the huge overhaul to app engine. Especially with the new support of PHP in app engine. While I love Rails, it's not far from from PHP frameworks like Laravel; other than the larger support of Rails. Setting support aside and focusing on optimizations:

I have no idea why this would be faster other than maybe a less request. But better is better at this point because I'm so new to it all.

Upvotes: 1

Views: 335

Answers (1)

Alain
Alain

Reputation: 6034

The Mirror API is a web REST API: this means that the underlying protocol relies on HTTP requests with JSON as the data representation.

There are many client libraries in many languages that you can use to communicate with the Mirror API and most of them are listed in our downloads page and have inline code snippets in our reference guide.

Bottom line, coding in Ruby is not a requirement, you can use your preferred language as long as you can send HTTP requests.

Upvotes: 3

Related Questions