# هل هناك طريقة لإيقاف مؤقت لـ RateLimiter مؤقتًا لإنشاء جماعي بواسطة المشرف؟

**URL:** https://meta.discourse.org/t/any-way-to-turn-off-ratelimiter-temporarily-for-bulk-creation-by-admin/138825
**Category:** Development
**Created:** [16 يناير 2020، 2:28م UTC](https://meta.discourse.org/t/any-way-to-turn-off-ratelimiter-temporarily-for-bulk-creation-by-admin/138825 "2020-01-16T14:28:38Z")
**Posts on this page:** 1
**Showing post:** 20

<div class="post-metadata">

### Author: ![Isambard](https://avatars.discourse-cdn.com/v4/letter/i/858c86/32.png) [@Isambard](https://meta.discourse.org/u/Isambard)
#### Post date: [29 مايو 2024، 8:39ص UTC](https://meta.discourse.org/t/any-way-to-turn-off-ratelimiter-temporarily-for-bulk-creation-by-admin/138825/20 "2024-05-29T08:39:55Z")

</div>

متابعةً لجهود فهم البرامج النصية ولغة Ruby وما إلى ذلك، وللأداء المحتمل، اتخذت مسارًا آخر وتجاوزت جميع الحدود عن طريق الكتابة مباشرة إلى قاعدة البيانات باستخدام SQL. بهذه الطريقة تمكنت من إجراء عدة آلاف من عمليات الإدراج في الثانية.

> [@How to create a new user in pure sql](https://meta.discourse.org/t/how-to-create-a-new-user-in-pure-sql/136525?u=isambard):
>
> What are the minimum required tables that require rows to be added to create user, so is then visible active in discourse Ive just inserted one row into user\_emails insert into user\_emails (user\_id, email, "primary", created\_at, updated\_at) values (2,'user@email.com',true, now(), now()); Unsuprisingly has not appeared in the gui, but what are the minimum steps, do I need to add to some more tables, or is there some restart I need to do. Now I expect someone will say this is not the right way…

كان هناك موضوع يسأل عن الجداول المطلوبة، وقد تم إغلاقه الآن، لذا سأجيب هنا بأنني قمت بتغيير الجداول التالية لإدراج المستخدمين:

```plaintext
user_avatars
user_emails
user_profiles
user_search_data
user_stats
users

```

---

_[View the full topic](https://meta.discourse.org/t/any-way-to-turn-off-ratelimiter-temporarily-for-bulk-creation-by-admin/138825)._
