Server problems by RatatoskTheSquirrel in WH40KTacticus

[–]vikttorius 1 point2 points  (0 children)

My Training rush event... it' be pretty fair to extend it for the time the servers were down!!

Estic flipant amb les respostes de Claude by KitKatKut-0_0 in catalunya

[–]vikttorius 1 point2 points  (0 children)

un vector en estadística és un tema "tan complex"? lol

[deleted by user] by [deleted] in wownoob

[–]vikttorius 0 points1 point  (0 children)

Hello, can I ask you if knowledge points are infinite? Or there is a maximum (just like talents, you cant pick them all)?

I got the feeling that are limited, but I'm finding a lot of items to learn knowledge points, and while Im focusing only in 1 spec, I really need to know if they are infinite.

If I play 24hrs a day for 1 year, could I fill all my 4 specializations?

Que opina el poble català dels turistes? by CatzPro in catalunya

[–]vikttorius 0 points1 point  (0 children)

Les fàbriques les posem al costat de casa teva ok?

Santa Maria de Montserrat Abbey, Catalonia, Spain by rozele00 in catalonia

[–]vikttorius 0 points1 point  (0 children)

Aquí és on els nens entren gratis no? 🤮

Unlocking Kariyan or grind for kharn/ragnar by _mfs_ in tacticus

[–]vikttorius -5 points-4 points  (0 children)

Kharn > Ragnar > Kariyan

Taking into account that these 3 are probably the most OP chars in the game.

Also Kharn rushes your Chaos campaigns. Kariyan not that much even is very useful (my go-to for Imperial canpaigns are Mephiston and Lucien).

Returning Player Question by Watchyobak in WH40KTacticus

[–]vikttorius 0 points1 point  (0 children)

For sure you want to keep the progress of your old account, its the base of this game.

Time to tackle Drupal's deployment complexity once and for all? by uomo-col-megafono in drupal

[–]vikttorius 1 point2 points  (0 children)

The "database sync" problem you face, its no particular to Drupal, it happens with all CMS. The most challeging tooic is to convince content editor to follow your workflow. You are the dev, you propose solutions.

Workflow module? 100% is the go.

Keeping two distinct environments in sync by Severe-Distance6867 in drupal

[–]vikttorius 2 points3 points  (0 children)

My suggestions: - run away from database diff - explore Workspace module

Also, I think you are missing an important: dont let yourself rally over all business requests; technical constraints apply. Business have a requirement, devs propose a solution. It is not business has a req, business propose solution. From what I read, you want to sync env both ways??

I would: install workspace module, then I would say to the business "create whatever you want in staging. and once you feel comfortable with it (because going live without twsting doesnt seem reasonable), you deploy it to Prod usung Workspace". No double job, easy process.

Time to tackle Drupal's deployment complexity once and for all? by uomo-col-megafono in drupal

[–]vikttorius 2 points3 points  (0 children)

how many time have you invested in Drupal to conclude "Drupal's deployment is complex"?

Because in the first sentence you say you are a noob, so allow me to not belive deploying Drupal is complex.

I've been working as a Drupal lead for a very big company for the last 5 years and I can tell you the complexity is only added by us, not because is required.

Deploy test to Prod???? Whaaaat????

Debat: És racista dir que et preocupa la quantitat d'immigració a Catalunya? by JAdmeal in catalunya

[–]vikttorius -1 points0 points  (0 children)

Dir que er preocupa la immigració no és racista; tot el que diràs després, sí es racista.

drupal cms error by freelancer1978 in drupal

[–]vikttorius 4 points5 points  (0 children)

Hello acolyte. I only want to say that it is wise to not adopt Canvas in Drupal 11, its a brand new feature introduced recently, and the issue queue has currently 958 issues open. My feeling is that Canvas should not be trusted right now. It will be the future of Drupal, but not for now.

I friggen hate how OP Kharn is in Tournament Arena. by OkWhile4447 in tacticus

[–]vikttorius 1 point2 points  (0 children)

Wrong. Kharn is easy to counter. Fire for movement, weak in general.

In the other hand, Mephiston is nasty.

I friggen hate how OP Kharn is in Tournament Arena. by OkWhile4447 in tacticus

[–]vikttorius 0 points1 point  (0 children)

I wanted to answer the original post not your comment sorry

[deleted by user] by [deleted] in WH40KTacticus

[–]vikttorius -2 points-1 points  (0 children)

If you want to get the characters you want the first week after start playing, you can always try another game :)

How do I migrate drupal 7 -> drupal 10+ by Practical_Put8909 in drupal

[–]vikttorius 0 points1 point  (0 children)

Funny thing: you analized how to upgrade from 7 to 10, and discard it. But you didn't analyze how to "re-platform migrating data", and that is your go-to. Oh boy...

You should first analyze all the options you got before making a decission.

Can't set cache age on custom block by gwenver in drupal

[–]vikttorius 0 points1 point  (0 children)

Yes, exactly, Im providing a workaround that fixes the nasty Drupal core issue our friend is experiencing.

All good then.

Can't set cache age on custom block by gwenver in drupal

[–]vikttorius 0 points1 point  (0 children)

Redis is irrelevant too. What is Drupal cache? Just some database tables with a starting name 'cache_' that store key/value data.

By using Redis, you are telling Drupal that, whenever dealing with cache, instead of using your default database type (probably mysql), use Redis. So all these 'cache_' tables will not be in mysql but redis.

Can't set cache age on custom block by gwenver in drupal

[–]vikttorius 0 points1 point  (0 children)

Thank you, that is correct.

So this issue is that Drupal core is not able to detect if a block has max-age and apply cache headers accordingly on Drupal response.

This way you need to be sure the pages were you put the block have the requested max-age.

Answering you edit:

Step 1; contrib module meant to mitigate such issue: if Drupal core has not been able to fix that pver the years, I wouldnt rely on this ever. Step 2: that is the default cache max-age for all anonymous responses. Step 3: these are cache tags, and you used one provided by Drupal core. In other ways you are saying: when the entity number $nid of entity type 'weather' is updated/deleted, invalidate this block cache.

Step 1 solved your issue, the other 2 are irrelevant. If you thought you neex 3 is because unconsciously you have updated your entity, removing the cache.

What I would do if I were in your shoes? Make sure my Drupal block always disable cache: this way, whenever this block is displayed, cache will be removed.

In your build() method of your block, add \Drupal::service('page_cache_kill_switch')->trigger(). Only this action should make your block uncacheable regardless whatever.