Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In
Continue with Google
Continue with Facebook
or use


Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here
Continue with Google
Continue with Facebook
or use


Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.


Have an account? Sign In Now

Sorry, you do not have a permission to ask a question, You must login to ask question.

Continue with Google
Continue with Facebook
or use


Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

Stack Ask

Stack Ask Logo Stack Ask Logo

Stack Ask Navigation

  • Home
  • About Us
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • About Us
  • Contact Us
Home/ Questions/Q 6041
Next
In Process
Hihi
  • 1
HihiTeacher
Asked: May 31, 20222022-05-31T06:33:34+00:00 2022-05-31T06:33:34+00:00In: Spring

Hỏi về quản lý bộ nhớ và đa luồng trong java

  • 1

Hi mọi người, hiện tại kiến thức của em đa số là tự học nên còn nhiều điều thắc mắc mà ko biết hỏi ai nên em muốn hỏi mọi người.Mong mọi người giải đáp giúp em ạ.

  1. Khi tạo 1 mảng byte lớn (ví dụ đến vài MB,GB) thì bộ nhớ mà chương trình Java sẽ dùng để chứa mảng bye đó sẽ dựa vào gì ạ ? RAM hay máy ảo JVM.Có phải PC có RAM dung lượng càng to thì có thể phải tạo nhiều biến dung lượng lớn như vậy cùng 1 lúc ko ạ ?
  2.  Làm cách nào để tải file nặng trong Java(Em có tìm hiểu thì thấy trên mạng ngta hướng dẫn là dùng Resource của Spring có đúng ko ạ em thấy cách này Spring đã làm hết cho mình rồi nên em muốn hỏi thêm để có thể custom theo ý mình ạ)
  3.  Về đa luồng, đối với Spring Boot thì việc dùng đa luồng em thấy xử lí rất nhanh những tác vụ nặng (gửi mail,….) trong thực tế thì ngta có dùng đa luồng ko ạ ? Và quan trọng là ngta có giới hạn số luồng Thread Pool theo 1 con số cụ thể nào ko (Ví dụ mình dùng quá nhiều thread thì có vấn đề gì xảy ra ko ạ ?)

Cảm ơn mọi người ạ !

java
  • 2 2 Answers
  • 101 Views
  • 0 Followers
  • 0
Answer
Share
  • Facebook
  • Report

2 Answers

  • Voted
  • Oldest
  • Recent
  1. monkey Enlightened
    2022-05-31T10:03:13+00:00Added an answer on May 31, 2022 at 10:03 am
    This answer was edited.

    1. Về lý thuyết thì em có thể tạo ra mảng byte với kích thước bao nhiêu tuỳ ý, nhưng trong thực tế sẽ chẳng bao giờ em tạo ra 1 mảng byte lên tới hàng MB cả. Việc cấp phát dữ liệu sẽ do hệ điều hành đảm nhiệm, JVM được viết bằng C/C++ nên nó cũng phải theo hệ điều hành. Mà việc cấp phát 1 mảng byte lớn là cực kỳ nặng nề bởi vì nó phải đi tìm kiếm các vùng nhớ còn trống sao cho đủ với kích thước em yêu cầu.

    RAM dung lượng lớn hay bé đều như nhau cả em ạ, các mảng byte khởi tạo cần phải nhỏ thôi, nên dưới 100KB. Chính vì thế người ta mới sinh ra InputStream, OutputStream để đọc ghi từ từ đó em.

    2. File nặng có kích thước từ 30MB trở nên thì việc upload/download file là tương đối khó khăn, muốn đảm bảo rằng file sẽ upload/download thành công thì nên chia nhỏ file lớn ra rồi download các file nhỏ và ghép lại sau, đây chính là tư tưởng của giao thức hls. Và anh tin là spring chưa hỗ trợ việc này, bởi vì việc cắt nhỏ file cần phải có công cụ, có thể ffmpeg hoặc em tự code, nhưng spring thì chưa có đâu.

    Nếu không muốn chia nhỏ file hoặc không thể chia nhỏ file thì em có thể sử dụng mô hình upload async và download async, tuy nhiên em sẽ cần set timeout của request dài ra, có thể 2 tiếng. Tuy nhiên nếu client bị mất mạng giữa chừng thì họ sẽ phải tải lại toàn bộ từ đầu.

    3. Đa luồng không làm tăng tốc độ xử lý tác vụ nặng, mà đa luồng sẽ giúp em xử lý các tác vụ nặng đồng thời, hãy phân biệt rõ. Trong thực tế thì hầu như tất cả các chương trình đều là đa luồng, ví dụ luồng main để hiển thị UI, luồng I/O để xử lý I/O Async. Và tất nhiên phải giới hạn số luồng rồi, bởi vì mỗi 1 luồng sẽ chiếm 1 số lượng tài nguyên nhất định, ví dụ java là 2MB vậy thì càng nhiều luồng thì càng tốn bộ nhớ và thời gian switch context tăng lên, vậy nên 1 chương trình chỉ nên có 300 threads là đủ rồi.

    • 1
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report
    • Hihi Teacher
      2022-05-31T10:18:46+00:00Replied to answer on May 31, 2022 at 10:18 am

      Cảm ơn anh rất nhiều !
      Chúc anh luôn vui vẻ và có thật nhiều sức khỏe !

      • 0
      • Share
        Share
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
        • Share on WhatsApp
        • Report

You must login to add an answer.

Continue with Google
Continue with Facebook
or use


Forgot Password?

Need An Account, Sign Up Here

Sidebar

Ask A Question

Stats

  • Questions 826
  • Answers 1k
  • Best Answers 80
  • Users 336
  • Popular
  • Answers
  • monkey

    [Deep Learning] Làm thế nào để xác định được cái ...

    • 16 Answers
  • Thành Vương

    Bug sai đường dẫn khi config ckeditor lên live

    • 14 Answers
  • Tú Trần Anh

    [Ezyfox Server] Unity game client không gửi được command khi ...

    • 12 Answers
  • tvd12
    tvd12 added an answer 1. Anh không hiểu tại sao em lại cần phải… February 4, 2023 at 7:50 am
  • tvd12
    tvd12 added an answer Cái này anh thấy là em đang gửi dữ liệu… February 4, 2023 at 7:46 am
  • monkey
    monkey added an answer Đây em: class Event{} class Room{} class EventRoom{eventId, roomId} February 2, 2023 at 9:07 am

Related Questions

  • Hồng Quân Nguyễn

    Cách truy vấn và xử lý dữ liệu lớn trong ...

    • 1 Answer
  • Vo Thanh Vuong

    Gen database bằng code java sử dụng các anotation

    • 3 Answers
  • Cường Nguyễn Hữu

    Xóa kiểm tra ràng buộc primary key-foreign key khi sử ...

    • 3 Answers

Top Members

tvd12

tvd12

  • 76 Questions
  • 1k Points
Enlightened
monkey

monkey

  • 122 Questions
  • 1k Points
Enlightened
Nguyễn Thái Sơn

Nguyễn Thái Sơn

  • 205 Questions
  • 307 Points
Enlightened

Trending Tags

#formatdate .net .net core .net oop abstract class access app access token ai analytics android ansible anti-flooding apache poi api app architecture artificial intelligence assembly async asyncawait atomicboolean authentication backend backend nestjs background bash script batch bean big project binding bitcoin blockchain blog boot-nodes branch british btree bucket4j buffered build bundle c# c# .net cache caching callback career career path cast centos chat cloud cloud reliability commit communication company computer science concurrent config-css connection pool content-disposition contract convert date to number cookie cors cosmos cosmos-sdk crawl data cron css database database migration datasource datastructure deadlock decentralized exchange deep learning deploy contract design-pattern design patterns devops dex di distraction programing dns docker download draw.io du học duration dữ liệu lớn eclip editor elasticsearch email employee english erc20 erc721 estimation eth ethereum ethereum login excel exception exception handle exception handler executor export compliance extensions exyfox ezyfox ezyfox-boot ezyfox-server ezyfoxserver ezyhttp ezymq-kafka ezyredis facebook fe filter floating point flutter format json freetank french front-end frontend fullstack fulltextsearch future gallery game game-box game-room game-server gateway get get file zip git glide go golang google gorilla graduation thesis graphql grapql grpc guide h2 database handy terminal hazelcast hibernate hibernateconfig html http https hyperloglog image index indexing integration-test intellij interface interview io ioc ipfs isolate issue it java java core javacore javascript java spring javaw java web jenkins jetbrains job join jotform jpa js json json file jsonproperty json to object jsp jsp & servlet junit-test jvm jwt kafka keep promise kerberos keycloak kotlin language languague library list load-balancing load balancer lock log log4j log4j-core login lưu trữ machine learning macos mail mail template main maria db math maven merge message queue messaging metamask microservice microservices migration mobile model mongo monitoring mq msgpack multi-threading multiple tenant multithread multithreading mysql n naming naming convention nan netcore netty networking nft nft game nginx nio node.js nodejs non-blocking io null oop opensource optimize oracle orm otp message paginaiton pagination pancakeswap panic partition pdf pgpool phỏng vấn plugin pointer postgresql postman pre private_key procedure profile programming project management promise properties push-noti push message android push notification python python unicode qrcode question queue rabbitmq reactive reactjs reactjs download readmoretextview recyclerview redis refactor refresh token regex replica repository request resilence4j resource rest resttemplate roadmap ropssten ropsten round robin rust rxjava s3 schedule scheduled scheduled spring boot search security send email send mail server servlet session shift jis singleton sjis slack smart contract soap socket socket server soft delete solution sosanh spring spring-boot-test spring-jpa spring aop springboot spring boot spring data jpa spring redis springsecurity spring security springwebflux mysql spring websocket spring websocket cors sql sql server sse ssl email stackask storage stream stream api stress test structure trong spring boot study synchronize synchronized system environment variables test thread threadjava threadpool thread pool thymeleaf tomcat totp tracking location transaction transfer transfer git udp uniswap unit test unity upload upload file utf-8 file validate validate date vector view volatile vue vue cli watermark web web3 web3 client webassembly webflux webpack websocket windows 11 winforms work zip file zookeeper

Footer

Stack Ask

Stack Ask is where Developers Ask & Answers. It will help you resolve any questions and connect you with other people.

About Us

  • Meet The Team
  • About Us
  • Contact Us

Legal Stuff

  • Terms of Service
  • Privacy Policy
  • Cookie Policy

Help

Follow

© 2021 Stack Ask. All Rights Reserved
Powered by youngmonkeys.org