search
HomeBackend DevelopmentPHP Tutorial[Product Design] E-commerce design Zhihu summary, product design e-commerce summary_PHP tutorial

[Product Design] E-commerce design Zhihu summary, product design e-commerce summary

If you want to build a B2B2C e-commerce platform, what issues should you pay attention to when setting up background data statistics? How to design a specific statistical module?

Wang Yuping:

I think that before building a database, you need to design the requirements and processes. With the requirements in this step, you will know what data you need here; with the process, you will know what data you need here. What data can be obtained, even the data type.

For example, in supplier management, you will get the supplier’s company region, phone number, category, etc. In data statistics, you can make statistics on region and category, and then based on C’s corresponding demand recommendations, etc.

PalmWong:

It is recommended to start with business understanding:

BBC platform is first divided into three backends

Merchant Portal Platform Operation Portal Buyer Personal Portal

The parts to be counted are also three pieces:

1, from the personal perspective of consumers: personal consumption statistics

2, from the perspective of platform operation: statistics on the operation of the entire platform, statistics on the operation of merchants

3, statistics from the perspective of merchants

BBCThe mall is actually a very complex business system. Due to changes in roles and functions, there are actually a lot of data interactions. There are many exceptions in reconciliation, statistics, and authority management.

You can’t just look at Tmall’s mode and just close your eyes.

Use PHP MySql to build a Taobao mall with tens of millions of users and visits B2C website, how about it?

Dion:

System architecture is very important!

Language:

There is no problem with mainstream languages. PHP, Java, whatever.

Front-end server:

If conditions permit CDN, best. If not, be sure to ensure the load performance of the front end. Generally recommendedNginx.

Application Server:

Cluster. The front end is responsible for load balancing. For clusters, just pay attention to the problem of Session. Nothing else.

Data storage:

If the amount of data is relatively large (millions), it is no problem to use MySQL Memcached to build a cluster.

If the amount of data is large, consider NoSQL. For example, Facebook uses Cassandra, Amazon uses Dynamo .

socici:

You can be simpler and look at it from the perspective of data accessed by users

Static files, including pictures, HTM , JS, css These are data that do not change frequently. Give a separate domain such as http://static.xxxx.com by nginxManagement

The dynamic data released through the front and backend is divided into the following types:

Data read:

1.For big data that users need to query, such as orders, you can check the database of slaver

2.The data displayed on the system public page, such as some product information, rankings, etc. can be retrieved from the cache

Data written:

If it is required to take effect immediately, such as modifying user information, write it directly to the master database

Things that have low real-time requirements or have concurrency restrictions, such as posting Weibo, sending private messages, etc. Write to the queue first, then read and save asynchronously to the database

The problem of product specification design in the e-commerce platform has been thrown out. Please comment?

Product list (product name, price, shelf availability and other basic information)

For example: 1, Mobile phone, 100

Specification table (primary key, productID, specification name )

For example: 1 , 1, operator

Product specification value table (primary key, specificationID, productID, specification valueID, specification valueNAME)

For example: 1, 1, 1, 0, Telecom version

2, 1, 1, 1, mobile version  

Specification inventory table (itemID, specification valueID combination, specification value NAMEcombination, inventory, price)

For example: 1, 1/0 (Operator, Telecom version) , operator /telecom version, 100, 100 Block

Problem description:

The above method can achieve multiple specifications and multiple inventories, but using an agreed specification order makes it painful for the system to count data related to different specifications in the later stage when writing a program.

And when creating a product, you must first create the product before you can create specifications. I personally refer to some large e-commerce platforms and found that product creation is completed with one submission.

Help needed:

I need to give a reasonable product design with multiple specifications, multiple prices, and multiple inventories based on my problem description, to solve my programming complexity, and at the same time ensure that I can create interactive products in the interactive design. Simple.

socici:

Product Category (typeid,type name, parentID)

Product list (product name, price, shelf availability and other basic product information, product classification)

Specification table (primary key, specification name )

Specification value table (Specification valueID, Specificationid, rule value type, specification default value)

Specification-Category association table (product categoryid, specificationid)

Product-Specification Association Table(Productid,Specificationid,Specification valueID,Specification actual value)

Inventory table (itemid,quantity,price)

How is a database similar to Taobao’s product details page stored?

1, the number of pictures and the number of introduction paragraphs for each product are not fixed , is After editing with the editor, will the entire html be stored in the database? Not realistic?

2. If stored as database fields, number of pictures and introduction paragraphs for each product The number is not fixed ,Even if you set an upper limit,, it will waste a lot of fields

3.When querying ,If the picture and introduction text are stored separately , So how do you match a certain picture with a question about introducing it when the page is displayed after querying

Liu Chuanshuang:

Overall

1. The structured information of the product is stored in the database, including name, price, inventory, attributes, etc. Of course, it is not a simple table.

2. The unstructured information of the product is saved into small files and stored in a self-developed massive small file system, including pictures and product description information.

3, product image file id needs to be stored in a database or other types of storage, and does not necessarily require multiple fields. This is a horizontal method. Generally, a picture of a product is stored as a record and expanded vertically.

4. Before saving the document, save the image first, and put the [Product Design] E-commerce design Zhihu summary, product design e-commerce summary_PHP tutorial image in the document Src address is replaced with the image path in the small file system, and that’s it

In addition, storage cannot be understood as only databases and file systems. There are various types of storage, different file systems, various RDBMS, NoSqlStorage...

Zi Liu:

Actually, several colleagues have already answered, so I will add something from a historical perspective

The earliest this field was indeed placed in the database was a clob field, which stored html fragment. Moreover, at that time, this field was in the same table as the product title, price, seller ID, etc. It is conceivable how much the performance would be affected.

So this method is destined to not last long. In 2005, I separated this field into a separate table to store it. This does not require much technology. content, it relieved a lot of pressure on the database at that time, and the DBAswere very grateful to me.

After 2006, Taobao began to use caching on a large scale. This field was also put into the cache, which reduced a lot of pressure on the database. (Only data that is not in the cache is read from the database, and it is put into the cache after being read).

In 2007, Taobao developed a distributed file storage system TFS, so this was completely The fields are extracted from the database, along with large field information such as transaction snapshots.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1122388.htmlTechArticle[Product Design] E-commerce design Zhihu summary, product design e-commerce summary I want to build a B2B2C e-commerce platform , what issues need to be paid attention to when building background data statistics? How to design specific...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
刨析Vue的服务器端通信流程:如何提高用户体验刨析Vue的服务器端通信流程:如何提高用户体验Aug 10, 2023 am 11:19 AM

刨析Vue的服务器端通信流程:如何提高用户体验引言:随着互联网的快速发展,客户端与服务器之间的通信变得日益重要。Vue作为一种现代的JavaScript框架,为开发者提供了丰富的工具和技术来实现服务器端通信。本文将深入探讨Vue的服务器端通信流程,并介绍一些提高用户体验的技巧和最佳实践。一、Vue服务器端通信流程概述Vue的服务器端通信流程包括以下几个关键步

用户体验五要素是什么用户体验五要素是什么Aug 26, 2022 pm 05:24 PM

用户体验五要素:1、用户需要,用户和经营者分别想从这个产品中获得什么;2、范围功能,这个产品有哪些功能;3、流程设计,可分为交互设计和信息架构两个大的部分,交互设计描述“可能的用户行为”,信息架构关注如何将信息表达给用户;4、原型设计,决定某个板块或按钮等交互元素应该放在页面的什么地方;5、感知设计,是将内容、功能和美学汇集到一起来产生一个最终设计,从而满足其他层面的所有目标。

PHP SSO单点登录与用户体验的完美结合PHP SSO单点登录与用户体验的完美结合Oct 15, 2023 am 08:23 AM

PHPSSO单点登录与用户体验的完美结合随着互联网的迅速发展,人们在使用各种网站和应用时需要频繁地注册和登录,不仅浪费了用户的时间和精力,还容易导致用户忘记账号和密码。为了解决这个问题,单点登录(SingleSign-On,简称SSO)技术应运而生。在多个相关网站或应用之间共享用户信息,实现用户在一处登录,在其他应用中免登录访问的便捷性,大大提升了用户的

win11和win10的比较详细对比win11和win10的比较详细对比Jan 04, 2024 am 11:35 AM

在win11系统正式发布后,它的性能就受到了广大网友的好奇,因为现在大家普遍使用的是win10系统,所以都想知道win11相比win10性能怎么样,有专业人士已经做出了相关测试,下面就跟着小编一起来看看吧。win11和win10哪个好用:答:目前win11好用,刚出现时可能存在bug漏洞,经过一段时间维护漏洞消失了。无论是性能还是界面美化,都可以说完全领先win10系统。win11和win10UI对比:1、win11系统将win10基础上所有的窗口、对话框都进行改变,统统使用圆角UI。2、同时,

win8系统为什么用的人比较少的详细介绍win8系统为什么用的人比较少的详细介绍Jul 13, 2023 pm 02:57 PM

为什么win8系统很少有人用?许多比较熟悉电脑的用户都知道,Windows操作系统有非常的多,现在连win7、winXP都有许多用户在使用,而win8系统却没人使用,这是因为win8系统相当于一个失败品,拥有着很多缺陷,下面小编就带着大家一起看看吧!Win8系统缺点介绍1、操作逻辑较差,让人难以领会Win8的界面设计和一些按钮的位置是很有问题的,本来采用新设计的win8就增加了用户的学习成本,win8的系统托盘还没了,最小化按钮也特别难找到,这让人觉得win8是个不成熟的产品,是个很麻烦的系统。

如何使用CSS3动画功能提升网页性能和用户体验如何使用CSS3动画功能提升网页性能和用户体验Sep 09, 2023 pm 07:43 PM

如何使用CSS3动画功能提升网页性能和用户体验在如今的互联网时代,网页设计已经成为了人们经常接触的一种艺术形式。而其中,动画效果在网页设计中起到了至关重要的作用,可以为用户呈现出更加生动、丰富的内容,提升用户的使用体验。然而,过多或不适当的动画效果也可能会给网页性能和用户体验带来负面影响。本文将介绍如何使用CSS3动画功能来提升网页性能和用户体验,并附上一些

改善用户体验的方法:固定定位网页导航栏改善用户体验的方法:固定定位网页导航栏Jan 20, 2024 am 10:27 AM

固定定位提高网页导航栏的用户体验,需要具体代码示例导航栏作为网页的重要组成部分之一,对于用户的导航和浏览体验起着关键作用。而提升导航栏的用户体验,固定定位是一种常用的方法。本文将介绍如何通过固定定位来提高网页导航栏的用户体验,并提供具体的代码示例。固定定位是指将元素固定在浏览器窗口或父容器的特定位置,即使用户向下滚动页面,该元素也将保持不动。这种技术常用于导

PHP 防抖技术:提升用户体验的重要利器PHP 防抖技术:提升用户体验的重要利器Oct 12, 2023 pm 12:48 PM

PHP防抖技术:提升用户体验的重要利器,需要具体代码示例摘要:在现代网页应用程序中,用户体验是至关重要的。而防抖技术是一种提升用户体验的重要利器,可以有效地减少不必要的请求和提高页面性能。本文将介绍PHP中的防抖技术,并给出几个具体的代码示例。正文:引言随着互联网的普及和发展,网页应用程序在我们的生活中扮演着越来越重要的角色。用户体验是我们开发者需要关注的

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft