Kenneth Tang
Kenneth Tang
I also encountered the same problem.
這個專案好像已經沒有在維護了,我有發現一個更完善的專案 https://github.com/Quansight-Labs/numpy.net
@OJacot-Descombes , **Ignore** 😥 https://github.com/SciSharp/NumSharp/blob/00d8700b00e815f321238536e0d6b4dbc9af8d6a/test/NumSharp.UnitTest/Creation/NdArray.Roll.Test.cs
@OJacot-Descombes I found a more complete package, maybe you can try it. https://github.com/Quansight-Labs/numpy.net
I found a more complete package, maybe you can try it. https://github.com/Quansight-Labs/numpy.net
I found a more complete package, maybe you can try it. https://github.com/Quansight-Labs/numpy.net
I found a more complete package, maybe you can try it. https://github.com/Quansight-Labs/numpy.net
Hi, If I use `privileged: true` in the docker-compose.yml. I get this error. `yaml.scanner.ScannerError: mapping values are not allowed here` podman-composer version 0.1.7dev
Is that right? ``` version: '3' services: registry: image: registry:latest privileged: true volumes: - ./:/var/lib/registry - ./config.yml:/etc/docker/registry/config.yml environment: REGISTRY_STORAGE_DELETE_ENABLED: "true" restart: always container_name: registry ui: image: joxit/docker-registry-ui:latest ports: - 5000:80...
我覺得還是要實現dbcontextpool呢 因為在高併發的情況下,保留連線比不斷建立中斷的效能還要來的好。 另外希望您實現 [PooledDbContextFactory](https://learn.microsoft.com/en-us/dotnet/api/microsoft.entityframeworkcore.infrastructure.pooleddbcontextfactory-1?view=efcore-6.0),在 [Worker Service](https://learn.microsoft.com/zh-tw/dotnet/core/extensions/workers)的情境下,常常會有一個 class 下面多個 function 需要使用 dbcontext,如果 class 注入 dbcontext,所有 function 共用 dbcontext 會有幾個問題。 1. 資料快取 2. dbcontext 不支援多執行緒,會噴錯