タグ

2021年10月27日のブックマーク (3件)

  • How Pokémon GO scales to millions of requests? | Google Cloud Blog

    Priyanka VergadiaStaff Developer Advocate, Google Cloud Have you caught Pokémons? Pokémon GO is a popular game played by millions, but it scales extremely well. This blog is a behind-the-scenes look into how the Pokémon GO engineering team manages and maintains the scale. Joining me is James Prompanya, Senior Engineering Manager at Niantic Labs who leads the server infrastructure team for  Pokémon

    How Pokémon GO scales to millions of requests? | Google Cloud Blog
    you21979
    you21979 2021/10/27
  • 労働条件(RJ)パトロール! - Apps on Google Play

    In addition to quizzes and manga content that point out "labor conditions (RJ) out" that appear in the story, You can also easily use functions such as viewing information on labor-related laws and checking contact information for consultation desks regarding labor conditions. Knowing labor-related laws and regulations, or working rules, in advance not only helps you work more comfortably and smoo

    労働条件(RJ)パトロール! - Apps on Google Play
    you21979
    you21979 2021/10/27
  • C++のラムダで再帰する - koturnの日記

    はじめに C++において,ラムダで再帰したいと考えることはたまにある. この記事ではラムダで再帰する手法をいくつか紹介する. 例として扱う再帰関数はフィボナッチ数列の関数(もっとも単純な実装)とする. int fib(int n) noexcept { return n < 2 ? n : (fib(n - 1) + fib(n - 2)); } 生成コード ラムダで再帰を行いたいと考えるのは変数のキャプチャをしつつ再帰をしたい場面であると思う. 例えば,メモ化再帰を行うと考えた場合, グローバル変数としてメモ化配列を用意する メモ化再帰用のクラスを用意する(メンバにメモ化配列を用意する) 再帰関数の引数にメモ化配列を与える といった方法が考えられるが,グローバル変数や専用のクラス定義が必要であり,あまりやりたくない. 引数にメモ化配列を与えるとなると,全ての再帰呼び出し箇所の記述が冗長に

    C++のラムダで再帰する - koturnの日記
    you21979
    you21979 2021/10/27