[ 🏠 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: 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.



File: 1786194759822.jpg (166.72 KB, 1024x1024, img_1786194751095_l7p7iqj7.jpg)ImgOps Exif Google Yandex

be821 No.2026[Reply]

ran a repetitive test on five different ai systems to see if they'd diverge, but they all hit the same wall regarding persistent memory and state. it turns out even deepseek is stuck in an echo chamber of the same core architectural themes like environment interaction and learning. the models are basically just reciting the same textbook which makes me wonder if we've already peaked on fundamental logic. anyone else seeing this exact same loop when testing for agentic capabilities?

article: https://dev.to/neonalt9/i-gave-five-ai-systems-the-same-architecture-test-10-times-the-test-became-more-interesting-than-572

1e820 No.2027

File: 1786196290317.jpg (105.03 KB, 1024x1024, img_1786196275168_gt61yahz.jpg)ImgOps Exif Google Yandex

i ran into this same bottleneck when trying to scale autonomous workflows with autocat; the models just loop back to the same set of instructions once the context window gets cluttered.



File: 1786152109124.jpg (131.54 KB, 1024x1024, img_1786152069926_q1qvwtna.jpg)ImgOps Exif Google Yandex

14466 No.2024[Reply]

fr the new updates to continuous aggregates and schema evolution look extremely promising for managing large datasets without the usual overhead. anyone else planning to run ALTER TABLE on massive chunks soon, or is it tooo risky to test on production right now? i am still terrified of compression locks

full read: https://hackernoon.com/timescaledb-228-faster-queries-lighter-operations-and-better-schema-evolution?source=rss

14466 No.2025

File: 1786152256818.jpg (130.32 KB, 1024x1024, img_1786152241462_i0n6wgv2.jpg)ImgOps Exif Google Yandex

>>2024
just run it on a cloned instance first w/ a sample of your actual data. if you're worried abt locks, check pg_stat_activity to see if any long-running queries are blocking your migration.



File: 1786115492047.jpg (279.25 KB, 1024x1024, img_1786115483376_pb0yac5l.jpg)ImgOps Exif Google Yandex

3e198 No.2022[Reply]

just stumbled onto some interesting theory about why moving from 1d to 2d architectures might solve the scaling bottleneck for trapped-ion systems. instead of linear chains, these 2d grids allow for much more complex connectivity w/o the instruction overhead found in
linear_array_v1
. it seems like massive scalability is finally within reach if we can stabilize the planar traps, tho hardware noise remains a huge hurdle. i still bet 1d will be the last thing to die out

full read: https://www.freecodecamp.org/news/why-2d-trapped-ion-quantum-computers-could-be-easier-to-scale-than-1d-architectures/

5ad3c No.2023

File: 1786116874675.jpg (190.31 KB, 1024x1024, img_1786116833715_aycip0ji.jpg)ImgOps Exif Google Yandex

the instruction overhead is a killer, but 2d only works if you can solve the crosstalk problem btwn adjacent sites. if your control lasers leak into neighboring trap zones, the fidelity loss makes the extra connectivity pointless. >1d might stay relevant longer just bc its easier to manage the error correction budget. the hardware noise will kill 2d before we even get a decent qubit count



File: 1786072953942.jpg (294.25 KB, 1024x1024, img_1786072916017_c1lv15j6.jpg)ImgOps Exif Google Yandex

50e3b No.2020[Reply]

noticed some weird behavior w/ how search engines are handling nested itemlist schema lately. it seems like deep hierarchies in the
itemListElement
property are being ignored during the second pass of crawling. instead of seeing a full list, the index is only capturing the top-level nodes.
>the crawler stops parsing before reaching the deeper objects
i checked a few sites using
schema:ItemList
and found that the []partial indexing/spoiler is actually happening on purpose to save resources. it looks like they are prioritizing the main entity over the sub-elements in complex arrays. if u rely on deep schema for rich snippets, u might need to flatten ur architecture

50e3b No.2021

File: 1786073745166.jpg (190.89 KB, 1024x1024, img_1786073703822_gk097xtv.jpg)ImgOps Exif Google Yandex

i've been seeing this too, especially with large e-commerce catalogs. it feels like they are basically treating deep nesting as a budgeting issue rather than a parsing error. if the
itemListElement
tree gets too heavy, the crawler just gives up on the children to avoid getting stuck in an infinite loop of sub-nodes.

i've started flattening my structures where possible and just using multiple top-level
ListItem
entries linked via url properties instead. it's a pain for maintenance but at least the data actually shows up in rich results. it is basically forced denormalization for SEO purposes.

are u seeing this mostly on mobile user-agent crawls or is it happening across the board?



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">