词汇:need
n. 需要,要求;必要之物;缺乏
相关场景
- I don’t quite get it, but let me try to ameliorate it anyway: It’s OK to still use bundlers! I’ve been pretty excited about the progress brought forward with esbuild and bun. I think both projects are really cool, and if you’re working on one of those big, honking SPA apps with hundreds or thousands of NPM dependencies, and megabytes of JavaScript that needs to travel over the wire, you should take full advantage of these powerful tools.
我不太明白,但让我试着改进一下:仍然可以使用捆绑器!我对esbuild和bun带来的进展感到非常兴奋。我认为这两个项目都很酷,如果你正在开发一个具有数百或数千个NPM依赖关系的大型SPA应用程序,以及需要通过网络传输的兆字节JavaScript,你应该充分利用这些强大的工具。>> Rails8- Just run bin/rails generate authentication and you’ll get basic models for Session and User, together with a PasswordsMailer, SessionsController, and an Authentication concern. All you have to bring yourself is a user sign-up flow (since those are usually bespoke to each application). No need to fear rolling your own authentication setup with these basics provided (or, heaven forbid, paying a vendor for it!).
只需运行bin/rails即可生成身份验证,您将获得会话和用户的基本模型,以及PasswordsMailer、SessionsController和身份验证问题。您只需为自己带来一个用户注册流程(因为这些流程通常是为每个应用程序定制的)。无需担心使用提供的这些基础知识来滚动自己的身份验证设置(或者,上帝保佑,不要为它付钱给供应商!)。>> Rails8- It’s a great example of the need to occasionally pull a fresh sheet of paper and consider a familiar problem from first principles again. And it turns out, in our new 'NOBUILD' world, the asset pipeline only needs to do two primary things: Provide a load path for assets and stamp them with digests to allow for far-future expiry. That’s basically it. Sprockets did a million other things than that, many of them in a way that had long since fallen out of favor, and from a state of disrepair that had few contributors willing or able to help remedy it.
这是一个很好的例子,说明需要偶尔拿出一张新纸,再次从第一性原理中考虑一个熟悉的问题。事实证明,在我们新的“NOBUILD”世界中,资产管道只需要做两件主要的事情:为资产提供加载路径,并用摘要标记它们,以允许在遥远的未来到期。基本上就是这样。Sprockets还做了无数其他事情,其中许多事情早已不受欢迎,而且由于年久失修,很少有贡献者愿意或能够帮助补救。>> Rails8- Solid Queue can either run as a puma plugin, which is the default on a single-server installation, or by using the new bin/jobs command for starting a dedicated dispatcher. It’s possible to run multiple dispatchers dealing with dedicated queues according to bespoke performance tuning all with a flexible configuration scheme that asks for no tweaking out of the box, but gives you all the dials once you need it.
Solid Queue既可以作为puma插件运行,这是单服务器安装的默认配置,也可以使用新的bin/jobs命令启动专用调度器。可以根据定制的性能调优运行多个调度程序来处理专用队列,所有这些都有一个灵活的配置方案,不需要开箱即用,但一旦需要,就会给你所有的拨号。>> Rails8- Solid Queue:
- Solid Queue Solid Queue replaces the need for not just Redis, but also a separate job-running framework, like Resque, Delayed Job, or Sidekiq, for most people. For high-performance installations, it’s built on the new FOR UPDATE SKIP LOCKED mechanism first introduced in PostgreSQL 9.5, but now also available in MySQL 8.0 and beyond. For more modest needs, it also works with SQLite, which makes it ideal for that no-dependency path to the first HELLO WORLD dopamine hit you get from seeing your work in production right away.
Solid Queue Solid Queue不仅取代了Redis,还取代了大多数人对单独的作业运行框架的需求,如Resque、Delayed job或Sidekiq。对于高性能安装,它建立在PostgreSQL 9.5中首次引入的新的For UPDATE SKIP LOCKED机制之上,但现在MySQL 8.0及更高版本也提供了该机制。对于更温和的需求,它也适用于SQLite,这使其成为您在生产中立即看到您的工作时获得第一个HELLO WORLD多巴胺的无依赖路径的理想选择。>> Rails8- Solid Cache replaces the need for either Redis or Memcached for storing HTML fragment caches in particular. In addition to getting rid of the accessory service dependency, it also always for a vastly larger and cheaper cache thanks to its use of disk storage rather than RAM storage. This means your cache can live longer and cover even more requests out the plank of the 95th or 99th percentile. Additionally, this cache can be encrypted and managed by an explicit retention limit (like 30 or 60 days). Making it easier to live up to modern privacy policies and expectations.
Solid Cache取代了Redis或Memcached来存储HTML片段缓存的需要。除了摆脱对附件服务的依赖外,由于使用了磁盘存储而不是RAM存储,它还总是需要更大、更便宜的缓存。这意味着您的缓存可以存活更长时间,并覆盖第95或99百分位之外的更多请求。此外,此缓存可以通过明确的保留限制(如30或60天)进行加密和管理。使遵守现代隐私政策和期望变得更加容易。>> Rails8- Solid Cable replaces the need for Redis to act as the pubsub server to relay WebSocket messages from the application to clients connected to different processes. It uses fast polling, but it’s still almost as quick as Redis, when run through the same server on SQLite.
Solid Cable取代了Redis作为pubsub服务器将WebSocket消息从应用程序中继到连接到不同进程的客户端的需要。它使用快速轮询,但当在SQLite上的同一服务器上运行时,它仍然几乎和Redis一样快。>> Rails8- These adapters are all created from the same premise: Disks have gotten fast enough that we don’t need RAM for as many tasks. This allows us to reap the simplification benefits of SSD and NVMe drives being orders of magnitude faster than good-old spinning rust.
这些适配器都是基于同一个前提创建的:磁盘已经变得足够快,我们不需要RAM来完成那么多任务。这使我们能够获得SSD和NVMe驱动器的简化优势,其速度比旧的旋转生锈快几个数量级。>> Rails8- This means there’s no need to put an Nginx or any other web server in front. The default Rails container is ready to accept traffic from the internet immediately.
这意味着不需要在前面放置Nginx或任何其他web服务器。默认的Rails容器已准备好立即接受来自互联网的流量。>> Rails8- All you need to bring is your own container registry account, like Docker Hub or GitHub, for storing the images.
您只需携带自己的容器注册表帐户,如Docker Hub或GitHub,用于存储映像。>> Rails8- All it needs is the IP addresses for a set of servers with your SSH key deposited, and you’ll be ready to go into production in under two minutes.
它所需要的只是一组服务器的IP地址,其中存储了SSH密钥,您将在两分钟内准备好投入生产。>> Rails8- GitHub users are now required to enable two-factor authentication as an additional security measure. Your activity on GitHub includes you in this requirement. You will need to enable two-factor authentication on your account before November 08, 2024, or be restricted from account actions.
GitHub用户现在需要启用双因素身份验证作为额外的安全措施。您在GitHub上的活动将您纳入此要求。您需要在2024年11月8日之前在您的帐户上启用双因素身份验证,否则将被限制帐户操作。>> 2024-9 stadium, gym naked- SZALAS:
- Problems. Money. I've got to raise money to buy the food. I need things to sell, it' s not easy.>> 钢琴家 The Pianist Movie Script
- SZPILMAN:
- I've been in hiding. I need somewhere to stay.>> 钢琴家 The Pianist Movie Script
- SZPILMAN:
- I need help.>> 钢琴家 The Pianist Movie Script
- SZPILMAN:
- If you need help... Whistle blows.>> 钢琴家 The Pianist Movie Script
- GRUN:
- To fight you need organisation, plans, guns!>> 钢琴家 The Pianist Movie Script
- SZPILMAN:
- I've been trying to get a certificate of employment for my father. I've managed to get certificates for me and the rest of the family but I need one more for my father. I've been trying all the firms, the shops...>> 钢琴家 The Pianist Movie Script
- HELLER:
- Oh, you need me now, yes, now you need me!>> 钢琴家 The Pianist Movie Script
- SZPILMAN:
- What are you talking about, my tie? What's my tie got to do with anything? I need the tie for my work.>> 钢琴家 The Pianist Movie Script
- I've come here as a friend. They're bringing Jews in from all over the country. Soon there'll be half a million people in the ghetto. We need more Jewish police...
我是作为朋友来的。他们从全国各地引进犹太人。很快,贫民区就会有50万人。我们需要更多的犹太警察。。。>> 钢琴家 The Pianist Movie Script- RHETT:
- I'm leaving you, my dear. All you need now is a divorce and your dreams of Ashley can come true.>> 飘 Gone with the Wind Movie Script
- RHETT:
- Yes, I know, but we don't need it. Sell it. Or better still, give it to Ashley. Melanie has been such a friend to both of us.>> 飘 Gone with the Wind Movie Script
- RHETT:
- You heard nothing of the kind. You wouldn't have come down if you thought I was here. You must need a drink badly.>> 飘 Gone with the Wind Movie Script
- MELANIE:
- What a lovely dress, Scarlett darling! India wasn't able to come tonight. Will you be an angel? I do need you to help me receive my guests. Mrs. Meade, here's our darling Scarlett.>> 飘 Gone with the Wind Movie Script