Recent content by grisha2217

  1. G

    Use "Deferred Join" for pagination (5x faster)

    https://hackmysql.com/post/deferred-join-deep-dive/https://aaronfrancis.com/2022/efficient-pagination-using-deferred-joins Simple Query select * from t order by x limit 500, 20 Optimized Query select * from t join ( select pk from t order by x limit 500, 20 ) dt using(pk) I have tested it on...
  2. G

    Good JS programmer

    Good JS programmer
  3. G

    XF 2.3 Boosting performance in XenForo 2.3

    I think this is bad practice to support several major versions in JS file. Will be better to separate code on few JS files via XF template like this: <xf:if is="{$xfOptions.versionId} >= 2300070"> <xf:js src="myaddon/vendor/scripts/2.3/core.js" /> <xen:else /> <xf:js...
  4. G

    XF 2.3 Boosting performance in XenForo 2.3

    What about user avatars? Do you store it in .jpg format? Do you plan use .webp format?
  5. G

    Redis Cache By Xon

    We have only one web server.
  6. G

    Redis Cache By Xon

    Are there any server-side settings of Redis for a high-load project? We tried to use Redis on our high load project (10 000 queries per second) and had problems with page loading (too long response from Redis like 1s instead 0.0006s for Libmemcached). We tried to enable Redis only for few people...
  7. G

    https://xenforo.com/community/threads/021-deleted-what-happened-there.216297/#post-1644293 Do...

    https://xenforo.com/community/threads/021-deleted-what-happened-there.216297/#post-1644293 Do you have any thoughts about revoking user 021's license?
  8. G

    Looking for Middle JavaScript Developer

    Skills: JS, TS, Svelte, Webpack, Git + Github Telegram: @lolzteam_old
  9. G

    Behavior of editor

    Lexical looks good, but don’t have good features like “auto link converter to image”, “suitable link editing box”. What about Imperavi? Quill.js?
  10. G

    XF 1 Integrate Froala Editor

    Hello. I have a big project using XenForo 1.5.24 with hand made plugins and custom theme, so i can't upgrade it to XF 2. I need a plugin or code changes to integrate froala editor instead default editor of XenForo 1.x Award 500$ in cryptocurrency. I can make prepayment if you have a reputation...
  11. G

    Why are you running an EOL version of PHP?

    I have installed installed PHP 8.1.7 for XenForo 1.5.24 (sure with a lot of code changes)
  12. G

    XF 1 Fix deadlock in conversations

    I raise the bounty to $500 @Xon
  13. G

    XF 1 Fix deadlock in conversations

    Yes, im already using your addon, but it doesn't affect my problem. Can you update this plugin? You will receive good reward from me My telegram: @lolzteam_old
Top Bottom