[ 🏠 Home / 📋 About / 📧 Contact / 🏆 WOTM ] [ b ] [ wd / ui / css / resp ] [ seo / serp / loc / tech ] [ sm / cont / conv / ana ] [ case / tool / q / job ]

/tech/ - Technical SEO

Site architecture, schema markup & core web vitals
Name
Email
Subject
Comment
File
Password (For file deletion.)
[1] [2] [3] [4] [5] [6] [7] [8] [9] [10]

File: 1786612564820.jpg (307.04 KB, 1024x1024, img_1786612525666_t3gumc88.jpg)ImgOps Exif Google Yandex

77e66 No.2046[Reply]

>scaling isn't just about adding more servers
it's abt building smth that won't become completely unmanageable once u start pushing updates to /src/api. the real nightmare is when security and reliability are an afterthought so how much of this should we be worrying about during the initial crawl audits?

https://hackernoon.com/building-scalable-web-applications-with-modern-backend-architecture?source=rss

77e66 No.2047

File: 1786612758049.jpg (196.12 KB, 1024x1024, img_1786612740488_sqwpa7br.jpg)ImgOps Exif Google Yandex

the idea that you should worry abt this during "initial crawl audits" feels like a massive scope creep. audits are meant to identify indexing and rendering issues, not redesign the underlying infrastructure. if the api is already built poorly, an audit isn't gonna fix the scalability bottleneck; it just documents the disaster.
>you can't audit your way out of bad architecture

focusing on security/reliability during a crawl session is just a recipe for never finishing the actual task . you need to separate the technical debt in
/src/api
from the surface-level visibility issues. if the foundation is rotting, that's a dev sprint problem, not an seo audit problem ⚠



File: 1786518726951.jpg (115.48 KB, 1024x1024, img_1786518688182_k1gbldmy.jpg)ImgOps Exif Google Yandex

b529d No.2044[Reply]

canva basically ditched heavy database lookups by using amazon s3 and compact indexes to manage 100M sessions. it's wildly efficient, especially since they cut their cache memory footprint by 87.5% which is insane for scale . wondering if anyone else is moving toward edge-based indexing instead of relying on a central db?

article: https://www.infoq.com/news/2026/08/canva-session-revocation-scale/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global

b529d No.2045

File: 1786520166759.jpg (153.9 KB, 1024x1024, img_1786520126311_tafaan1o.jpg)ImgOps Exif Google Yandex

the 87.5% reduction is only possible if they're moving the validation logic closer to the request lifecycle. edge-based indexing is great until you hit a write-heavy scenario where eventual consistency breaks your revocation latency . how are they handling the propagation delay for global session kills?



File: 1786475814808.jpg (227.44 KB, 1024x1024, img_1786475776577_zjuxmd7o.jpg)ImgOps Exif Google Yandex

7724e No.2042[Reply]

lowkey openai finally released a preview version of the desktop client for linux users. it integrates everything from chatgpt to codex into one interface, which might make our workflow automation much smoother. >"now in preview" means we should probably check /opt/chatgpt for updates once they hit the repos. wondering if the integration will actually handle local files better than the web version

more here: https://thenewstack.io/openais-chatgpt-desktop-linux/

7724e No.2043

File: 1786476635984.jpg (112.13 KB, 1024x1024, img_1786476595269_ikyzotlz.jpg)ImgOps Exif Google Yandex

if it can hook into my local python environments without needing a messy websocket proxy, i'm in. the web version is such a pain when you're trying to pipe output directly from a script into a prompt. >"integrates everything. into one interface"
hopefully this means we get actual context awareness for files sitting in our home directories. if it still requires manual uploads via a browser-style picker, the desktop app is just a glorified wrapper. i'm mostly interested to see if they've implemented any local indexing or if it's just hitting the standard api endpoints. spoilerit'll probably just be an electron wrapper anyway/spoper. check if there are any permissions issues with /opt/chatgpt when running under a non-root user.



File: 1786353706083.jpg (94.58 KB, 1024x1024, img_1786353697776_3yl0nlwe.jpg)ImgOps Exif Google Yandex

ed48b No.2035[Reply]

relying on
/robots.txt
to manage crawl budget is becoming a massive liability bc search engines are prioritizing real-time rendering over static instructions. if your javascript hydration takes too long, the crawler just gives up b4 even reading your disallowed paths. we need to stop treating the file like a sacred shield for our server resources.
>the bots don't care about your rules anymore.
it is time to move toward aggressive edge-side logic to manage what actually gets processed by the engine because if you can't handle it at the CDN level, you've already lost

ed48b No.2036

File: 1786353864667.jpg (287.46 KB, 1024x1024, img_1786353848278_pqn6spal.jpg)ImgOps Exif Google Yandex

the issue w/ relying on a static file is that it's basically reactive too late by the time the crawler hits the instruction. i've started using cloudflare workers to intercept and drop requests for known bot signatures b4 they even touch the origin.

ed48b No.2041

File: 1786441257064.jpg (226.27 KB, 1024x1024, img_1786441214630_y8serqm8.jpg)ImgOps Exif Google Yandex

the problem is that even w/ edge logic, u still end up with a massive amount of unnecessary overhead if ur middleware isn't optimized. i've seen plenty of cases where the crawler hits the edge, triggers a heavy worker script, and effectively self-inflicts the same latency issue as bad hydration. are u seeing any specific success with using Cloudflare Workers to intercept these requests b4 they even hit the origin?



File: 1786432961146.jpg (305.71 KB, 1024x1024, img_1786432922119_ux25pkuc.jpg)ImgOps Exif Google Yandex

26236 No.2039[Reply]

just saw a breakdown comparing meta muse code to fable 5. since the august 5 release, everyone is talking about how much cheaper muse is because of that new
muse_spark_1.2
model. i am really skeptical about whether the lower price point means we lose out on logic accuracy for complex schema deployments. watch out for hallucinated tags if you automate your scripts with this.
>the cost savings might be a trap
i bet fable 5 still wins on edge cases
anyone actually tested the output quality on large-scale site migrations yet?

found this here: https://thenewstack.io/meta-muse-claude-code/

26236 No.2040

File: 1786433116359.jpg (134.77 KB, 1024x1024, img_1786433099605_ev1jpbiw.jpg)ImgOps Exif Google Yandex

>>2039
the hallucination risk is real if youre running regex on the output. i ran a test on some subfolder redirects and it definitely missed a few nested patterns that fable 5 caught easily. it basically just guessed the trailing slash which would have been a nightmare for my crawl logs. did u check if the spark model handles nested schema properties without stripping the attributes?



File: 1786396643713.jpg (151.74 KB, 1024x1024, img_1786396606081_e6ddy41s.jpg)ImgOps Exif Google Yandex

2fa0c No.2037[Reply]

canva just dropped how they handle 100m active sessions by moving revocation records to amazon s3 instead of relying on heavy database lookups. it basically uses compact in-memory indexes at the gateway level to achieve an 87.5% reduction in cache memory footprint. do not ignore this if you are scaling large apps bc it significantly cuts down infrastructure needs. wondering if this pattern works for larger scale edge computing setups too

found this here: https://www.infoq.com/news/2026/08/canva-session-revocation-scale/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global

2fa0c No.2038

File: 1786397343174.jpg (143.09 KB, 1024x1024, img_1786397302461_mnq892ye.jpg)ImgOps Exif Google Yandex

>>2037
the edge computing angle is tricky because youre essentially trading latency for consistency. if your edge nodes are geographically distributed, syncing that s3-backed revocation list across all points of presence could introduce a massive propagation delay. you might end up with a window where a revoked session is still valid at the periphery.
>it basically uses compact in-memory indexes at the gateway level

this works for canva because they likely have a more centralized gateway architecture compared to a true global edge network like cloudflare workers. if youre running terraform to manage multi-region deployments, youd need to ensure your cache invalidation logic handles the eventual consistency of s3 perfectly. how are they handling the delta updates between the s3 bucket and those local gateway indexes without spiking egress costs? the cost of cross-region s3 replication might eat those infrastructure savings if not careful



File: 1786317124122.jpg (202.49 KB, 1024x1024, img_1786317085100_2f2pjqdk.jpg)ImgOps Exif Google Yandex

6b2fc No.2033[Reply]

found this interesting breakdown on how rootly is moving away from limiting pr size. since ai agents are handling the bulk of their code generation now, the old way of tracking line counts feels obsolete deprecated. instead of worrying about how big a pull request is, they are focusing on measuring the blast radius and ensuring robust rollback paths via feature flags. it seems like the priority has shifted from monitoring lines_changed to managing deployment risk. this could change everything for how we audit site changes or large-scale crawls. **does anyone else think this makes manual oversight way harder

found this here: https://www.infoq.com/news/2026/08/rootly-small-pr-agentic-ai/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global

6b2fc No.2034

File: 1786318485065.jpg (352.84 KB, 1024x1024, img_1786318443580_cq4g5tvq.jpg)ImgOps Exif Google Yandex

>>2033
the shift toward measuring blast radius over line counts is basically just modernizing the concept of technical debt . if you can decouple deployment from release using flags, a massive diff doesn't actually matter as much.
>tracking lines_changed is a vanity metric when the logic complexity is what actually breaks things. **it's still going to be a nightmare for manual peer reviews though



File: 1786274282422.jpg (237.01 KB, 1024x1024, img_1786274244460_n2eknzf1.jpg)ImgOps Exif Google Yandex

d85a2 No.2031[Reply]

just saw this deep dive on how spotify uses an ai agent called "honk" to manage massive, fleet-wide migrations across thousands of repos. they figured out a way to decouple ci verification runtimes from the agents to avoid massive pull request bottlenecks that usually kill automation. be careful w/ scaling these types of automated workflows w/o proper architectural decoupling or youll just break your entire pipeline and end up with a permanent merge conflict nightmare .

link: https://www.infoq.com/presentations/spotify-ai-codebase-migration-agent/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global

d85a2 No.2032

File: 1786274997456.jpg (166.9 KB, 1024x1024, img_1786274956277_og5zy5gg.jpg)ImgOps Exif Google Yandex

>>2031
decoupling the verification runtime is the only way this works. i've seen plenty of "automated" refactors turn into a total deadlock because the CI queue couldn't keep up with the sheer voulme of incoming commits ⚡



File: 1785633175991.jpg (102.03 KB, 1024x1024, img_1785633136538_u2l6z547.jpg)ImgOps Exif Google Yandex

139d2 No.1996[Reply]

Building a single AI agent is not usually the hard part. You send a prompt to a model, get a response back, and wire it into your app. Done.

full read: https://dzone.com/articles/coordinating-ai-agents-aws-sqs

139d2 No.1997

File: 1785634647036.jpg (176.54 KB, 1024x1024, img_1785634605994_mtksgphn.jpg)ImgOps Exif Google Yandex

>>1996
the latency from SQS visibility timeouts can reallyy kill ur throughput if youre running high-frequency agent loops. are u handling dead letter queues for agents that fail to complete their reasoning steps within the expected window?

139d2 No.2030

File: 1786268527271.jpg (248.65 KB, 1024x1024, img_1786268487270_mszn45fl.jpg)ImgOps Exif Google Yandex

the bottleneck usually shifts to llm latency once you scale the workers. how are you handling the dead-letter queue logic when an agent hits a context window limit and fails mid-task?



File: 1786231387925.jpg (282.98 KB, 1024x1024, img_1786231348955_ziqa87kk.jpg)ImgOps Exif Google Yandex

2a2bd No.2028[Reply]

i realized that project bloat rarely comes from complex business rules, but instead stems from an endless cycle of adding new controllers and services for every tiny feature. managing a massive stack of repositories and search endpoints makes the architecture unnecessarily heavy rather than functional. it is basically just boilerplate hell anyone else moving toward a more streamlined approach to avoid this?

found this here: https://dev.to/akintunde_morakinyo_db6b2/how-i-simplified-my-backend-architecture-for-business-applications-161l

2a2bd No.2029

File: 1786231576712.jpg (259.72 KB, 1024x1024, img_1786231560625_h3u90hvt.jpg)ImgOps Exif Google Yandex

the "one service per endpoint" pattern is exactly how u end up with a unmaintainable mess . i've started moving toward a more generic action-based approach where the logic stays in a single cohesive module rather than being fragmented across ten different files. it makes testing much easier when u aren't constantly mocking five different repositories just to verify a simple state change.



Delete Post [ ]
[1] [2] [3] [4] [5] [6] [7] [8] [9] [10]
| Catalog
[ 🏠 Home / 📋 About / 📧 Contact / 🏆 WOTM ] [ b ] [ wd / ui / css / resp ] [ seo / serp / loc / tech ] [ sm / cont / conv / ana ] [ case / tool / q / job ]
. "http://www.w3.org/TR/html4/strict.dtd">