This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"testing" | |
"golang.org/x/crypto/bcrypt" | |
) | |
func BenchmarkBcrypt4(b *testing.B) { | |
benchBcrypt(b, 4) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import akka.actor._ | |
import akka.http.model.HttpMethods._ | |
import akka.http.model._ | |
import akka.stream.scaladsl._ | |
import akka.stream.scaladsl.Flow | |
import play.modules.reactivemongo.json.BSONFormats | |
import reactivemongo.bson.BSONDocument | |
import scala.concurrent.Future | |
import scala.concurrent.ExecutionContext.Implicits.global | |
import play.api.libs.json._ |