Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 111 - 120 of 229 for benchmarks (0.17 seconds)

  1. docs/ja/docs/async.md

    そして、それが **FastAPI** で得られるパフォーマンスの水準です。
    
    さらに、並列性と非同期性を同時に活用できるため、テストされた多くの NodeJS フレームワークより高い性能を発揮し、C に近いコンパイル言語である Go と同等の性能になります [(すべて Starlette のおかげです)](https://www.techempower.com/benchmarks/#section=data-r17&hw=ph&test=query&l=zijmkf-1)。
    
    ### 並行処理は並列処理より優れている? { #is-concurrency-better-than-parallelism }
    
    いいえ!それがこの話の教訓ではありません。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 27.9K bytes
    - Click Count (0)
  2. docs/en/mkdocs.yml

      - contributing.md
      - project-generation.md
      - external-links.md
      - newsletter.md
      - management-tasks.md
    - About:
      - about/index.md
      - alternatives.md
      - history-design-future.md
      - benchmarks.md
      - management.md
    - release-notes.md
    markdown_extensions:
      material.extensions.preview:
        targets:
          include:
          - '*'
      abbr: null
      attr_list: null
      footnotes: null
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Apr 01 16:16:24 GMT 2026
    - 9.9K bytes
    - Click Count (0)
  3. docs/uk/docs/alternatives.md

    Додаткову інформацію див. у розділі [Розгортання](deployment/index.md).
    
    ///
    
    ## Орієнтири та швидкість { #benchmarks-and-speed }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 37.2K bytes
    - Click Count (0)
  4. docs/ko/docs/alternatives.md

    **FastAPI** 애플리케이션을 실행하기 위한 주요 웹 서버.
    
    또한 `--workers` 커맨드라인 옵션을 사용하면 비동기 멀티프로세스 서버로 실행할 수도 있습니다.
    
    자세한 내용은 [배포](deployment/index.md) 섹션을 확인하세요.
    
    ///
    
    ## 벤치마크와 속도 { #benchmarks-and-speed }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 26.3K bytes
    - Click Count (0)
  5. cmd/test-utils_test.go

    // This makes it easy to run the TestServer from any of the tests.
    // Using this interface, functionalities to be used in tests can be
    // made generalized, and can be integrated in benchmarks/unit tests/go check suite tests.
    type TestErrHandler interface {
    	testing.TB
    }
    
    const (
    	// ErasureSDStr is the string which is used as notation for Single node ObjectLayer in the unit tests.
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 77K bytes
    - Click Count (0)
  6. docs/en/docs/release-notes.md

    * Add translation to Portuguese for [Benchmarks - Comparações](https://fastapi.tiangolo.com/pt/benchmarks/). PR [#1274](https://github.com/tiangolo/fastapi/pull/1274) by [@Serrones](https://github.com/Serrones).
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Apr 03 12:07:04 GMT 2026
    - 631K bytes
    - Click Count (0)
  7. src/bytes/bytes_test.go

    			if r != needle {
    				rs = append(rs, r)
    			}
    		}
    	}
    	// Shuffle the runes so that they are not in descending order.
    	// The sort is deterministic since this is used for benchmarks,
    	// which need to be repeatable.
    	rr := rand.New(rand.NewSource(1))
    	rr.Shuffle(len(rs), func(i, j int) {
    		rs[i], rs[j] = rs[j], rs[i]
    	})
    	uchars := string(rs)
    
    	return func(b *testing.B, n int) {
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Wed Mar 11 03:07:05 GMT 2026
    - 62.9K bytes
    - Click Count (0)
  8. docs/ru/docs/async.md

    ### Конкурентность лучше параллелизма? { #is-concurrency-better-than-parallelism }
    
    Нет! Мораль истории не в этом.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 37.9K bytes
    - Click Count (0)
  9. docs/tr/docs/async.md

    ### Eşzamanlılık paralellikten daha mı iyi? { #is-concurrency-better-than-parallelism }
    
    Hayır! Hikâyenin özü bu değil.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 23.7K bytes
    - Click Count (0)
  10. docs/pt/docs/async.md

    ### Concorrência é melhor que paralelismo? { #is-concurrency-better-than-parallelism }
    
    Não! Essa não é a moral da história.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 25.2K bytes
    - Click Count (0)
Back to Top